We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5be3131 commit a9bfdcdCopy full SHA for a9bfdcd
.github/workflows/ci.yml
@@ -140,3 +140,12 @@ jobs:
140
run: python -m pip install ${{ matrix.artifact || '.' }}
141
- name: run tests
142
run: python ${{ matrix.opts }} -m pytest -v -Werror -Wignore::ImportWarning --doctest-glob="*.rst" -ra
143
+ # necessary to create a unified CI result and not have to update
144
+ # branch protection rules every time the matrix gets updated
145
+ results:
146
+ name: "CI Results"
147
+ needs: ["checks", "test"]
148
+ runs-on: ubuntu-latest
149
+ permissions: {}
150
+ steps:
151
+ - run: exit 0
0 commit comments