We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 12e4ebd + fd97a75 commit 1394cc8Copy full SHA for 1394cc8
3 files changed
.github/workflows/shellcheck.yml
@@ -1,6 +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]
5
+
6
+on:
7
+ pull_request:
8
+ paths-ignore:
9
+ - 'utils/**'
10
+ - 'doc/**'
11
+ - 'bin/**'
12
+ - '**.md'
13
+ - '**.1'
14
+ - '**.html'
15
+ - '**.pem'
16
+ - '**.pdf'
17
+ - '**.yml'
18
+ - 'LICENSE'
19
+ - 'Dockerfile'
20
+ - 'Dockerfile.alpine'
21
22
permissions:
23
contents: read
24
.github/workflows/unit_tests_macos.yml
@@ -1,3 +1,5 @@
+# "paths-ignore" should be in line with unit_tests_ubuntu.yml
+# and shellcheck.yml
name: CI run MacOS
.github/workflows/unit_tests_ubuntu.yml
+# "paths-ignore" should be in line with unit_tests_macos.yml
name: CI run Ubuntu
0 commit comments