File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
15
- python : ["3.10"]
15
+ python : ["3.10", "3.12" ]
16
16
17
17
steps :
18
18
- uses : actions/checkout@v3
@@ -22,14 +22,14 @@ jobs:
22
22
python-version : ${{ matrix.python }}
23
23
- name : Install dependencies
24
24
run : |
25
- python3.10 -m venv venv
25
+ python${{ matrix.python }} -m venv venv
26
26
source venv/bin/activate
27
27
pip3 install --upgrade pip
28
- python3.10 -m pip install -e ".[dev]"
28
+ python${{ matrix.python }} -m pip install -e ".[dev]"
29
29
- name : Test with pytest & coverage
30
30
run : |
31
31
source venv/bin/activate
32
- python3.10 -m pytest --cov=src --cov-report term --cov-report html --cov-report xml -vv
32
+ python${{ matrix.python }} -m pytest --cov=src --cov-report term --cov-report html --cov-report xml -vv
33
33
# TODO requires activation for this repository on codecov website first.
34
34
# - name: Upload coverage to Codecov
35
35
# uses: codecov/codecov-action@v3
You can’t perform that action at this time.
0 commit comments