Skip to content

Commit 55c370f

Browse files
committed
updates Github Actions
1 parent 6fbae6f commit 55c370f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/python-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ jobs:
1515
matrix:
1616
os: [
1717
ubuntu-latest,
18-
#windows-latest,
18+
windows-latest,
1919
macOS-latest
2020
]
2121
python-version: ['3.9', '3.10', '3.11', '3.12']
2222
poetry-version: [1.7.1]
2323
fail-fast: false
2424
runs-on: ${{ matrix.os }}
2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v4
2727

2828
- name: Set up Python ${{ matrix.python-version }}
29-
uses: actions/setup-python@v2
29+
uses: actions/setup-python@v5
3030
with:
3131
python-version: ${{ matrix.python-version }}
3232

@@ -51,7 +51,7 @@ jobs:
5151
run: poetry config virtualenvs.in-project true
5252

5353
- name: Set up cache
54-
uses: actions/cache@v2
54+
uses: actions/cache@v4
5555
id: cache
5656
with:
5757
path: .venv
@@ -64,7 +64,7 @@ jobs:
6464
run: poetry run pytest --cov=paat --cov-report=xml --disable-pytest-warnings
6565

6666
- name: Upload coverage to Codecov
67-
uses: codecov/codecov-action@v2
67+
uses: codecov/codecov-action@v4
6868
with:
6969
file: ./coverage.xml
7070
flags: unittests

0 commit comments

Comments
 (0)