We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 098b8c1 commit 3da9dd2Copy full SHA for 3da9dd2
1 file changed
.github/workflows/main.yml
@@ -1,10 +1,16 @@
1
-# Run shellcheck and shfmt on all shell files and yapf on all Python files in this repository
+# Run shellcheck and shfmt on all shell files and several Python linters on all Python files in this repository
2
name: Lint checks
3
on: [push, pull_request]
4
jobs:
5
+ python:
6
+ strategy:
7
+ fail-fast: false
8
+ matrix:
9
+ version: ['3.11', '3.10', '3.9', '3.8']
10
+ uses: ClangBuiltLinux/actions-workflows/.github/workflows/python_lint.yml@main
11
+ with:
12
+ python_version: ${{ matrix.version }}
13
shellcheck:
14
uses: ClangBuiltLinux/actions-workflows/.github/workflows/shellcheck.yml@main
15
shfmt:
16
uses: ClangBuiltLinux/actions-workflows/.github/workflows/shfmt.yml@main
- yapf:
- uses: ClangBuiltLinux/actions-workflows/.github/workflows/yapf.yml@main
0 commit comments