-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (42 loc) · 970 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Run Tests
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
schedule:
- cron: '0 9 * * 0' # At 09:00 on Sunday
workflow_dispatch:
jobs:
test-macos:
runs-on: macos-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13.0-rc.2']
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- uses: ./.github/actions/test
test-windows:
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13.0-rc.2']
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- uses: ./.github/actions/test
test-ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13.0-rc.2']
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- uses: ./.github/actions/test