File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 5
5
6
6
jobs :
7
7
code-coverage :
8
- runs-on : ubuntu-20 .04
8
+ runs-on : ubuntu-22 .04
9
9
steps :
10
10
- name : Checkout
11
11
uses : actions/checkout@v3
12
12
13
- - name : Set up Python 3.10
13
+ - name : Set up Python 3.12
14
14
uses : actions/setup-python@v5
15
15
with :
16
- python-version : ' 3.10 '
16
+ python-version : ' 3.12 '
17
17
18
18
- name : Install dependencies
19
19
run : |
20
20
python -m pip install --upgrade pip
21
- python -m pip install tox==3.24.5
21
+ python -m pip install tox tox-gh-actions
22
+ python -m pip install poetry
22
23
python -m venv .venv
23
24
source .venv/bin/activate
24
25
pip install -e .
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ commands_pre =
71
71
poetry install --no-root --sync --with test
72
72
73
73
[testenv:cov]
74
- basepython = python3.10
74
+ basepython = python3.12
75
75
commands_pre =
76
76
poetry install --no-root --sync --with test
77
77
commands =
You can’t perform that action at this time.
0 commit comments