blob: 785d40c92e0de30d4ca97c9a03f4f74197dcf941 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
on: pull_request
jobs:
check_files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Check files for compliance
run: .github/workflows/scripts/check-files.sh
|