Skip to content

Commit 16c5377

Browse files
committed
Merge branch 'master' of https://github.com/keatonb/Pyriod
2 parents a27e7e4 + ab9d66d commit 16c5377

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

.github/workflows/tests.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# .github/workflows/tests.yml
2+
3+
name: tests
4+
5+
on:
6+
push:
7+
pull_request:
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
python-version: ["3.10", "3.11", "3.12", "3.13"]
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- uses: actions/setup-python@v5
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
24+
- name: Install package
25+
run: |
26+
python -m pip install --upgrade pip
27+
python -m pip install -e ".[test]"
28+
29+
- name: Run tests
30+
run: |
31+
pytest -v

0 commit comments

Comments
 (0)