Skip to content

Commit 9328e08

Browse files
committed
Fix CI pipeline
1 parent 536b3bf commit 9328e08

File tree

4 files changed

+327
-141
lines changed

4 files changed

+327
-141
lines changed

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

Lines changed: 6 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') }}
@@ -46,4 +46,4 @@ jobs:
4646
- name: Tests ☑
4747
run: |
4848
source $(poetry env info --path)/bin/activate
49-
py.test -k "not wikiart"
49+
pytest

0 commit comments

Comments
 (0)