We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9663bc5 commit affd4eaCopy full SHA for affd4ea
2 files changed
.github/workflows/lint.yml
@@ -8,12 +8,22 @@ on:
8
jobs:
9
shellcheck:
10
runs-on: ubuntu-latest
11
+ permissions:
12
+ security-events: write
13
+ contents: read
14
steps:
15
- name: Checkout
16
uses: actions/checkout@v5
17
18
+ - name: Create requirements.txt
19
+ if: hashFiles('**/requirements.txt', '**/pyproject.toml') == ''
20
+ run: touch ./requirements.txt
21
+
22
- name: Check
- run: shellcheck .env build-* fetch
23
+ uses: reactive-firewall/shellcheck-scan@v1
24
+ with:
25
+ match: .env build-* fetch
26
+ publish-artifacts: ${{ github.ref_name == github.event.repository.default_branch }}
27
28
yamllint:
29
.yamllint.yml
@@ -3,5 +3,7 @@ extends: default
3
4
rules:
5
truthy: disable
6
+ line-length:
7
+ max: 100
comments:
min-spaces-from-content: 1
0 commit comments