mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-27 00:19:36 -05:00
25 lines
544 B
YAML
25 lines
544 B
YAML
|
name: Check licenses
|
||
|
on:
|
||
|
push:
|
||
|
branches: [main]
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
check:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
||
|
|
||
|
- name: Install Go
|
||
|
uses: actions/setup-go@84cbf8094393cdc5fe1fe1671ff2647332956b1a
|
||
|
with:
|
||
|
go-version: "1.18"
|
||
|
cache: true
|
||
|
|
||
|
- name: Install go-licenses
|
||
|
run: go install github.com/google/go-licenses@latest
|
||
|
|
||
|
- name: Check licenses
|
||
|
run: hack/check-licenses.sh
|