mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
8b65920a8b
This is a follow-up for c687536956
23 lines
427 B
YAML
23 lines
427 B
YAML
name: license-check
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'vendor'
|
|
pull_request:
|
|
paths:
|
|
- 'vendor'
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup Go
|
|
uses: actions/setup-go@main
|
|
with:
|
|
go-version: 1.16
|
|
id: go
|
|
- name: Code checkout
|
|
uses: actions/checkout@master
|
|
- name: Check License
|
|
run: |
|
|
make check-licenses
|