-
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (22 loc) · 730 Bytes
/
tests.yml
File metadata and controls
27 lines (22 loc) · 730 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
name: Run tests on supported Python versions
on: [push, pull_request, workflow_dispatch]
jobs:
extensive_tests:
name: Run tests on Python ${{ matrix.python }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
os: ["ubuntu-latest"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python }}"
- name: Run tests
run: make clean && make dev && make test