We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59837ce commit 81559fcCopy full SHA for 81559fc
1 file changed
.github/workflows/docker-tests.yml
@@ -10,15 +10,6 @@ concurrency:
10
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
11
12
jobs:
13
- shellcheck:
14
- name: Shellcheck
15
- runs-on: ubuntu-latest
16
-
17
- steps:
18
- - name: Run ShellCheck
19
- - uses: actions/checkout@v3
20
- run: find . -type f -name "*.sh" -exec shellcheck {} +
21
22
tests:
23
name: Validate Platform Installation
24
runs-on: ubuntu-latest
@@ -34,3 +25,13 @@ jobs:
34
25
- name: Check Health
35
26
run: |
36
27
./postflight_checks.sh
28
+
29
+ shellcheck:
30
+ name: Shellcheck
31
+ runs-on: ubuntu-latest
32
33
+ steps:
+ - name: Run ShellCheck
+ - uses: actions/checkout@v3
+ run: find . -type f -name "*.sh" -exec shellcheck {} +
37
0 commit comments