Skip to content

Commit f60f94b

Browse files
committed
GH WF for testing
1 parent 6c81591 commit f60f94b

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ${{ matrix.os }}
8+
strategy:
9+
fail-fast: false
10+
max-parallel: 5
11+
matrix:
12+
python-version: ['3.10', '3.11', '3.12', '3.13']
13+
os: [ ubuntu-latest, macos-latest ]
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Set up Python ${{ matrix.python-version }}
17+
uses: actions/setup-python@v3
18+
with:
19+
python-version: ${{ matrix.python-version }}
20+
- name: Install dependencies
21+
run: |
22+
pip install --upgrade pip poetry
23+
poetry install --with dev
24+
- name: PyTest testrunner
25+
run: |
26+
poetry run pytest

0 commit comments

Comments
 (0)