We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea369bb commit ec99723Copy full SHA for ec99723
.github/workflows/main.yml
@@ -51,6 +51,7 @@ jobs:
51
fi
52
53
pytest-nosoftdeps:
54
+ needs: code-quality
55
name: nosoftdeps (${{ matrix.python-version }}, ${{ matrix.os }})
56
runs-on: ${{ matrix.os }}
57
env:
@@ -103,7 +104,7 @@ jobs:
103
104
flake8 --show-source --statistics .
105
106
pytest:
- needs: code-quality
107
+ needs: pytest-nosoftdeps
108
name: py${{ matrix.python-version }} on ${{ matrix.os }}
109
110
@@ -193,8 +194,8 @@ jobs:
193
194
fail_ci_if_error: true
195
196
notebooks:
- runs-on: ubuntu-latest
197
needs: code-quality
198
+ runs-on: ubuntu-latest
199
200
strategy:
201
matrix:
0 commit comments