Skip to content

Commit eee0da3

Browse files
committed
Fix CI pipeline
1 parent 536b3bf commit eee0da3

File tree

3 files changed

+323
-140
lines changed

3 files changed

+323
-140
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,25 @@ jobs:
88
strategy:
99
max-parallel: 5
1010
matrix:
11-
python-version: [3.9, '3.10', '3.11', '3.12']#, '3.13']
11+
python-version: ['3.10', '3.11', '3.12', '3.13'] #, '3.14']
1212
steps:
1313
- name: Checkout 🛎️
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515
- name: Set up Python ${{ matrix.python-version }} 🔧
16-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v6
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
- name: Pip dependencies cache
2020
# Attempt to restore an existing cache
21-
uses: actions/cache@v4
21+
uses: actions/cache@v5
2222
with:
2323
path: ~/.cache/pip
2424
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}-${{ hashFiles('dev-requirements.txt') }}
2525
restore-keys: |
2626
${{ runner.os }}-pip-
2727
- name: Virtualenvs dependencies cache
2828
# Attempt to restore an existing cache
29-
uses: actions/cache@v4
29+
uses: actions/cache@v5
3030
with:
3131
path: ~/.local/share/virtualenvs
3232
key: ${{ runner.os }}-virtualenvs-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}-${{ hashFiles('dev-requirements.txt') }}
@@ -37,6 +37,7 @@ jobs:
3737
sudo apt install libjpeg-dev zlib1g-dev
3838
python -m pip install -U pip poetry
3939
poetry install
40+
poetry env info --path
4041
source $(poetry env info --path)/bin/activate
4142
pip install -r dev-requirements.txt
4243
- name: Linter 🔎
@@ -46,4 +47,4 @@ jobs:
4647
- name: Tests ☑
4748
run: |
4849
source $(poetry env info --path)/bin/activate
49-
py.test -k "not wikiart"
50+
pytest -k "not wikiart"

0 commit comments

Comments
 (0)