We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cd4d28 commit b0ec123Copy full SHA for b0ec123
.github/workflows/pytest_matrix.yml
@@ -23,8 +23,8 @@ jobs:
23
name: Pytest (All, Python ${{ matrix.python-version }}, ${{ matrix.os }})
24
# Don't run on forks. Run on pushes to main, and on PRs that are not from forks.
25
if: >
26
- (github.event_name == 'push' && github.ref == 'refs/heads/main') ||
27
- (github.event.pull_request.head.repo.fork == false)
+ github.event_name == 'pull_request' ||
+ (github.event_name == 'push' && github.ref == 'refs/heads/main')
28
strategy:
29
matrix:
30
python-version: [
0 commit comments