Skip to content

Commit 927f255

Browse files
committed
MNT: Add dependencies to jobs in CI
1 parent ffb2fe8 commit 927f255

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,15 @@ jobs:
3939
pip install pytest
4040
pytest
4141
42+
check:
43+
needs: test
44+
runs-on: ubuntu-latest
45+
steps:
46+
- name: Placeholder for CI checks in PRs
47+
run: echo "Done"
48+
4249
build_win_mac:
50+
needs: test
4351
runs-on: ${{ matrix.os }}
4452
if: startsWith(github.ref, 'refs/tags')
4553
strategy:
@@ -71,6 +79,7 @@ jobs:
7179
path: dist/
7280

7381
build_manylinux:
82+
needs: test
7483
runs-on: ubuntu-latest
7584
if: startsWith(github.ref, 'refs/tags')
7685
steps:
@@ -89,6 +98,7 @@ jobs:
8998
path: dist/
9099

91100
build_sdist:
101+
needs: test
92102
runs-on: ubuntu-latest
93103
if: startsWith(github.ref, 'refs/tags')
94104
steps:

0 commit comments

Comments
 (0)