Skip to content

Commit ccd8e72

Browse files
committed
Refactor build_deploy.yml to separate test jobs for PyQt5 and PyQt6
1 parent 4b012da commit ccd8e72

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/build_deploy.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,14 @@ permissions:
88
contents: read
99

1010
jobs:
11-
test:
12-
uses: ./.github/workflows/test.yml
11+
test-pyqt5:
12+
uses: ./.github/workflows/test_pyqt5.yml
13+
14+
test-pyqt6:
15+
uses: ./.github/workflows/test_pyqt6.yml
1316

1417
deploy:
15-
needs: test
18+
needs: [test-pyqt5, test-pyqt6]
1619

1720
runs-on: ubuntu-latest
1821

0 commit comments

Comments
 (0)