We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c20a09f commit a988359Copy full SHA for a988359
.github/workflows/python-package.yml
@@ -16,9 +16,9 @@ jobs:
16
python-version: ["3.9", "3.10", "3.11"]
17
18
steps:
19
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
20
- name: Set up Python ${{ matrix.python-version }}
21
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v5
22
with:
23
python-version: ${{ matrix.python-version }}
24
- name: Install dependencies
@@ -44,7 +44,8 @@ jobs:
44
run: |
45
pytest --cov=tmdbsimple --cov-report term-missing --cov-report=xml
46
- name: Upload coverage to Codecov
47
- uses: codecov/codecov-action@v1
+ uses: codecov/codecov-action@v4
48
49
- file: ./coverage.xml
+ files: ./coverage.xml
50
name: codecov-tmdbsimple
51
+ # token: ${{ secrets.CODECOV_TOKEN }} # commented out to see if works without token
0 commit comments