mirror of
https://github.com/pinnacle-comp/pinnacle.git
synced 2024-12-26 21:58:10 +01:00
21 lines
415 B
YAML
21 lines
415 B
YAML
name: Check MPL license headers
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
pull_request:
|
|
branches:
|
|
- "main"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check_headers:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install addlicense
|
|
run: go install github.com/google/addlicense@latest
|
|
- name: Check headers
|
|
run: $HOME/go/bin/addlicense -check -l mpl ./src
|