0
Fork 0
mirror of https://github.com/project-zot/zot.git synced 2024-12-16 21:56:37 -05:00
zot/.github/workflows/license.yaml
Ramkumar Chinchani 635d07ae04
chore: update golang (to 1.20.x) and golangci-linter (#1388)
Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
2023-04-27 00:09:46 -07:00

29 lines
641 B
YAML

name: "Software License Check"
on:
push:
paths:
- 'go.mod'
branches:
- main
pull_request:
paths:
- 'go.mod'
# The branches below must be a subset of the branches above
branches: [main]
permissions: read-all
jobs:
license-check:
runs-on: ubuntu-latest
name: License Check
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
cache: false
go-version: 1.20.x
- name: Install go-licenses
run: go install github.com/google/go-licenses@latest
- name: Check for forbidden licenses
run: make check-licenses