mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
30cdcc751d
See https://github.com/golang/go/issues?q=milestone%3AGo1.20.6+label%3ACherryPickApproved
26 lines
460 B
YAML
26 lines
460 B
YAML
name: license-check
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'vendor'
|
|
pull_request:
|
|
paths:
|
|
- 'vendor'
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup Go
|
|
uses: actions/setup-go@main
|
|
with:
|
|
go-version: 1.20.6
|
|
id: go
|
|
- name: Code checkout
|
|
uses: actions/checkout@master
|
|
- name: Check License
|
|
run: |
|
|
make check-licenses
|