Skip to content

Commit 2558ac2

Browse files
committed
Move shellcheck into deploy, Make deploy depend on success of shellcheck, rename deploy
1 parent 63402dc commit 2558ac2

2 files changed

Lines changed: 9 additions & 19 deletions

File tree

.github/workflows/shellcheck.yaml

Lines changed: 0 additions & 18 deletions
This file was deleted.
Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build toolchain docker image
1+
name: Test scripts and build toolchain docker image
22

33
on:
44
push:
@@ -9,8 +9,16 @@ on:
99
- '*'
1010

1111
jobs:
12+
ShellCheck:
13+
name: Shellcheck
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: ShellCheck Depends
18+
uses: ludeeus/action-shellcheck@master
1219
Docker:
1320
runs-on: ubuntu-latest
21+
needs: ShellCheck
1422
steps:
1523
- name: Checkout
1624
uses: actions/checkout@v2

0 commit comments

Comments
 (0)