Skip to content

Commit f2db6bf

Browse files
committed
Try fix error when evaluating 'runs-on' for job 'test' in Github Actions
1 parent 69823ba commit f2db6bf

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci_tests.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,15 @@ on:
2525

2626
jobs:
2727
test:
28-
name: ${{ matrix.os }} - Python ${{ matrix.python-version }} / NumPy ${{ matrix.numpy-version }}
28+
name: ${{ matrix.os }} - Python ${{ matrix.python-version }} - NumPy ${{ matrix.numpy-version }}
2929
runs-on: ${{ matrix.os }}
3030
strategy:
3131
fail-fast: false
3232
matrix:
3333
python-version: [3.7, 3.9]
3434
os: [ubuntu-latest, macOS-latest, windows-latest]
3535
# Is it a draft Pull Request (true or false)?
36-
isDraft:
37-
- ${{ github.event.pull_request.draft }}
36+
isDraft: ${{ github.event.pull_request.draft }}
3837
# Only run one job (Ubuntu + Python 3.9) for draft PRs
3938
exclude:
4039
- os: macOS-latest

0 commit comments

Comments
 (0)