Compare commits

..
+17 -4
View File
@@ -1,9 +1,10 @@
name: Tests
run-name: Tests (dev)
on:
push:
branches: [ dev ]
branches: [ main ]
schedule:
- cron: 0 0 * * *
pull_request:
env:
@@ -11,6 +12,7 @@ env:
jobs:
test:
strategy:
matrix:
python-version:
@@ -21,8 +23,19 @@ jobs:
- '3.12.x'
os:
- ubuntu-latest
- macos-latest
- windows-latest
include:
- os: macos-latest
python-version: '3.8.x'
if: >-
${{ !contains(github.ref, 'refs/heads/gpu') &&
github.event_name != 'pull_request' ||
github.event.pull_request.base.ref != 'gpu' }}
- os: windows-latest
python-version: '3.8.x'
if: >-
${{ !contains(github.ref, 'refs/heads/gpu') &&
github.event_name != 'pull_request' ||
github.event.pull_request.base.ref != 'gpu' }}
runs-on: ${{ matrix.os }}