Skip to content

Commit 6c31faa

Browse files
authored
Fix tests (#48)
1 parent 25f11b9 commit 6c31faa

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/unit-tests.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
python-version: ['3.x']
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121
- name: Set up Python ${{ matrix.python-version }}
22-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v5
2323
with:
2424
python-version: ${{ matrix.python-version }}
2525
- name: Install dependencies
@@ -36,10 +36,11 @@ jobs:
3636
run: |
3737
cd tests && pytest --cov=./ --cov-report=xml
3838
- name: Upload Coverage Report
39-
uses: codecov/codecov-action@v1
39+
uses: codecov/codecov-action@v4.0.1
4040
with:
41+
token: ${{ secrets.CODECOV_TOKEN }}
4142
files: tests/coverage.xml
4243
env_vars: OS,PYTHON
4344
name: codecov-umbrella
4445
fail_ci_if_error: true
45-
path_to_write_report: ./coverage/codecov_report.txt
46+
#path_to_write_report: ./coverage/codecov_report.txt

0 commit comments

Comments
 (0)