File tree Expand file tree Collapse file tree 1 file changed +15
-12
lines changed
Expand file tree Collapse file tree 1 file changed +15
-12
lines changed Original file line number Diff line number Diff line change 1- name : Run Tests
1+ name : Python Tests
22
33on :
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
You can’t perform that action at this time.
0 commit comments