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 00476b7 commit c07d17eCopy full SHA for c07d17e
.github/workflows/shellcheck.yml
@@ -1,19 +1,24 @@
1
+# Runs shellcheck on code -- in error mode only.
2
+# "paths-ignore" should be in line with unit_test.*yml files
3
---
4
name: Shellcheck
-on: [pull_request]
- paths-ignore:
5
- - 'utils/**'
6
- - 'doc/**'
7
- - 'bin/**'
8
- - '**.md'
9
- - '**.1'
10
- - '**.html'
11
- - '**.pem'
12
- - '**.pdf'
13
- - '**.yml'
14
- - 'LICENSE'
15
- - 'Dockerfile'
16
- - 'Dockerfile.alpine'
+
+on:
+ pull_request:
+ paths-ignore:
+ - 'utils/**'
+ - 'doc/**'
+ - 'bin/**'
+ - '**.md'
+ - '**.1'
+ - '**.html'
+ - '**.pem'
+ - '**.pdf'
17
+ - '**.yml'
18
+ - 'LICENSE'
19
+ - 'Dockerfile'
20
+ - 'Dockerfile.alpine'
21
22
permissions:
23
contents: read
24
0 commit comments