File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ jobs:
11
11
strategy :
12
12
matrix :
13
13
os :
14
- - ubuntu-22 .04
14
+ - ubuntu-24 .04
15
15
python-version :
16
- - " 3.7"
17
- - " 3.8"
18
16
- " 3.9"
19
17
- " 3.10"
18
+ - " 3.11"
19
+ - " 3.12"
20
20
21
21
name : Python ${{ matrix.python-version }} on ${{ matrix.os }}
22
22
runs-on : ${{ matrix.os }}
@@ -26,14 +26,13 @@ jobs:
26
26
- uses : actions/checkout@v2
27
27
28
28
- name : Set up Python ${{ matrix.python-version }}
29
- uses : actions/setup-python@v2
29
+ uses : actions/setup-python@v5
30
30
with :
31
31
python-version : ${{ matrix.python-version }}
32
32
33
33
- name : Install dependencies
34
34
run : |
35
35
sudo apt-get install gettext aspell aspell-fr enchant-2
36
- python -m pip install --upgrade pip
37
36
pip install -r requirements.txt
38
37
pip install bandit coverage flake8 pylint pytest pytest-cov
39
38
You can’t perform that action at this time.
0 commit comments