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 69823ba commit f2db6bfCopy full SHA for f2db6bf
.github/workflows/ci_tests.yaml
@@ -25,16 +25,15 @@ on:
25
26
jobs:
27
test:
28
- name: ${{ matrix.os }} - Python ${{ matrix.python-version }} / NumPy ${{ matrix.numpy-version }}
+ name: ${{ matrix.os }} - Python ${{ matrix.python-version }} - NumPy ${{ matrix.numpy-version }}
29
runs-on: ${{ matrix.os }}
30
strategy:
31
fail-fast: false
32
matrix:
33
python-version: [3.7, 3.9]
34
os: [ubuntu-latest, macOS-latest, windows-latest]
35
# Is it a draft Pull Request (true or false)?
36
- isDraft:
37
- - ${{ github.event.pull_request.draft }}
+ isDraft: ${{ github.event.pull_request.draft }}
38
# Only run one job (Ubuntu + Python 3.9) for draft PRs
39
exclude:
40
- os: macOS-latest
0 commit comments