Skip to content

Commit 63dc40f

Browse files
committed
Format code
1 parent f6c57a5 commit 63dc40f

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

.github/workflows/test.yml

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run Tests
1+
name: Python Tests
22

33
on:
44
push:
@@ -10,21 +10,24 @@ jobs:
1010
test:
1111
runs-on: ubuntu-latest
1212

13+
strategy:
14+
matrix:
15+
python-version: [3.13]
16+
1317
steps:
14-
- name: Checkout code
15-
uses: actions/checkout@v4
16-
17-
- name: Set up Python
18+
- uses: actions/checkout@v4
19+
20+
- name: Set up Python ${{ matrix.python-version }}
1821
uses: actions/setup-python@v4
1922
with:
20-
python-version: '3.13'
21-
23+
python-version: ${{ matrix.python-version }}
24+
2225
- name: Install dependencies
2326
run: |
2427
python -m pip install --upgrade pip
25-
pip install pytest hypothesis
26-
27-
- name: Run tests in multiple folders
28+
pip install -r requirements.txt
29+
pip install pytest
30+
31+
- name: Run tests
2832
run: |
29-
pytest test/ tests/ -v
30-
33+
pytest

0 commit comments

Comments
 (0)