Skip to content

Commit

Permalink
Update github package workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
celiao committed Jan 6, 2025
1 parent c20a09f commit a988359
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -44,7 +44,8 @@ jobs:
run: |
pytest --cov=tmdbsimple --cov-report term-missing --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
files: ./coverage.xml
name: codecov-tmdbsimple
# token: ${{ secrets.CODECOV_TOKEN }} # commented out to see if works without token

0 comments on commit a988359

Please sign in to comment.