-
Notifications
You must be signed in to change notification settings - Fork 3
43 lines (37 loc) · 1014 Bytes
/
CI.yml
File metadata and controls
43 lines (37 loc) · 1014 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
40
41
42
43
name: CI
on:
push:
branches:
- main
pull_request:
workflow_call:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
name: Tests (${{ matrix.os }} / py${{ matrix.python }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.13']
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[testing]"
- name: Run pytest (POSIX)
if: runner.os != 'Windows'
run: pytest --maxfail=1 --disable-warnings
- name: Run pytest (Windows)
if: runner.os == 'Windows'
run: pytest --maxfail=1 --disable-warnings -p no:faulthandler