VictoriaMetrics/.github/workflows/check-licenses.yml
Aliaksandr Valialkin 221dd3a224
all: bump the minimum supported version of Go from 1.17 to 1.18
This is needed because some dependencies uses generics, which have been appeared in Go1.18

This is a follow-up for caf3dd4fa2
2022-08-08 13:45:39 +03:00

26 lines
458 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.18
id: go
- name: Code checkout
uses: actions/checkout@master
- name: Check License
run: |
make check-licenses