Skip to content

Commit 79cb195

Browse files
Merge branch 'master' into SSL/TLS_MODULES
2 parents 0615a1f + c054aa9 commit 79cb195

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/ci_cd.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ on:
66
- workflow_dispatch
77

88
jobs:
9-
run-pytest:
10-
name: Run pytest
9+
run-tests:
10+
name: Run tests
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
@@ -28,7 +28,8 @@ jobs:
2828
2929
build-package:
3030
name: Build package
31-
needs: run-pytest
31+
needs:
32+
- run-tests
3233
runs-on: ubuntu-latest
3334
steps:
3435
- uses: actions/checkout@v4
@@ -56,6 +57,8 @@ jobs:
5657

5758
test-docker-image:
5859
name: Test Docker image
60+
needs:
61+
- run-tests
5962
runs-on: ubuntu-latest
6063
steps:
6164
- name: Check out the repo
@@ -144,6 +147,8 @@ jobs:
144147
github.repository == 'owasp/nettacker' &&
145148
github.event_name == 'push' &&
146149
startsWith(github.event.ref, 'refs/tags/v')
150+
needs:
151+
- test-docker-image
147152
runs-on: ubuntu-latest
148153
steps:
149154
- name: Checkout

0 commit comments

Comments
 (0)