-
Notifications
You must be signed in to change notification settings - Fork 14
27 lines (24 loc) · 754 Bytes
/
test.yml
File metadata and controls
27 lines (24 loc) · 754 Bytes
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
# this file is *not* meant to cover or endorse the use of GitHub Actions, but rather to
# help test this project
name: Test
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v6
with:
submodules: recursive
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- name: Install test dependencies
run: python -m pip install --upgrade nox
- name: Test
run: python -m nox -s tests-${{ matrix.python }}