Skip to content

Commit 5a92cfc

Browse files
ssbarneacidrblock
andauthored
Run image building in parallel with tox tests (#371)
Co-authored-by: Bradley A. Thornton <[email protected]>
1 parent 08645f3 commit 5a92cfc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/tox.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
build-image:
2626
runs-on: ${{ matrix.builder }}
2727
name: ${{ matrix.name }}
28+
# commented to speedup execution
29+
# needs: tox
2830
services:
2931
registry:
3032
image: registry:2
@@ -66,7 +68,9 @@ jobs:
6668
publish-image:
6769
environment: release # approval
6870
runs-on: ubuntu-latest
69-
needs: build-image
71+
needs:
72+
- build-image
73+
- tox
7074
if: github.event_name == 'release' && github.event.action == 'published'
7175
steps:
7276
- name: Check out repository

0 commit comments

Comments
 (0)