-
Notifications
You must be signed in to change notification settings - Fork 55
39 lines (31 loc) · 758 Bytes
/
tests.yml
File metadata and controls
39 lines (31 loc) · 758 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
28
29
30
31
32
33
34
35
36
37
38
39
#
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE file for details.
name: CI Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Python ${{ matrix.python }}
runs-on: ubuntu-24.04
strategy:
matrix:
python: ['3.11', '3.12', '3.13', '3.14']
fail-fast: false
steps:
- uses: actions/checkout@v5
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- name: Update Pip
run: pip install --upgrade pip setuptools
- name: Install Tox
run: pip install tox
- name: Run tests
run: tox -e py