Skip to content

Commit 98ac9c2

Browse files
fix: updates
Signed-off-by: Andriy Kalashnykov <AndriyKalashnykov@gmail.com>
1 parent 4dd47b3 commit 98ac9c2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ jobs:
4545
cache-key: "latest"
4646

4747
tests:
48+
needs: [ setup, staticcheck ]
49+
timeout-minutes: 20
4850
strategy:
4951
matrix:
5052
os: [ubuntu-latest, macos-latest]
@@ -69,6 +71,7 @@ jobs:
6971
run: make test
7072

7173
builds:
74+
needs: [ setup, staticcheck ]
7275
timeout-minutes: 20
7376
strategy:
7477
matrix:
@@ -96,10 +99,10 @@ jobs:
9699

97100
release-binaries:
98101
if: github.ref_type == 'tag'
102+
needs: [ setup, tests, staticcheck, builds ]
99103
strategy:
100104
matrix:
101105
os: [ ubuntu-latest]
102-
needs: [ setup, tests, staticcheck, builds ]
103106
runs-on: ${{ matrix.os }}
104107
steps:
105108
- name: Checkout
@@ -144,8 +147,8 @@ jobs:
144147

145148
release-docker-images:
146149
if: github.ref_type == 'tag'
147-
runs-on: ubuntu-latest
148150
needs: [tests, staticcheck, builds]
151+
runs-on: ubuntu-latest
149152

150153
steps:
151154
- name: Checkout

0 commit comments

Comments
 (0)