File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 66 - workflow_dispatch
77
88jobs :
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
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
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
You can’t perform that action at this time.
0 commit comments