We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ac7c33 commit 1b8c523Copy full SHA for 1b8c523
.github/workflows/Linting.yml
@@ -0,0 +1,20 @@
1
+name: Linting
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
+ workflow_dispatch:
7
8
+jobs:
9
10
+ Linting:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout Repo
14
+ uses: actions/checkout@v4
15
+ with:
16
+ submodules: recursive
17
+ - name: Format Python Licenses
18
+ run: |
19
+ grep -Lr "SPDX-License-Identifier: Apache-2.0" --exclude-dir=".git" . | grep ".*\.py$" || [[ $? == 1 ]]
20
+ shell: bash
0 commit comments