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.
2 parents 44b7275 + 0a93fc7 commit 7e1f8f7Copy full SHA for 7e1f8f7
.github/workflows/plexon2-testing.yml
@@ -2,17 +2,18 @@ name: NeoPlexon2Test
2
3
on:
4
workflow_dispatch:
5
- schedule:
6
- - cron: "0 12 * * 0" # weekly at noon UTC on Sundays
+ schedule:
+ - cron: "0 12 * * 0" # weekly at noon UTC on Sundays
7
8
9
jobs:
10
build-and-test:
11
- name: Test on (${{ inputs.os }}) (${{ matrix.python-version}}) (${{ matrix.numpy-version }})
12
- runs-on: ${{ inputs.os }}
+ name: Test on (${{ matrix.os }}) (${{ matrix.python-version}}) (${{ matrix.numpy-version }})
+ runs-on: ${{ matrix.os }}
13
strategy:
14
fail-fast: true
15
matrix:
16
+ os: [windows-latest, ubuntu-latest]
17
python-version: ['3.9', '3.12']
18
numpy-version: ['1.26', '2.0']
19
defaults:
0 commit comments