Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci-test.yml: Upload coverage to Codecov uses: codecov/codecov-action@v4 #24

Merged
merged 2 commits into from
Jul 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# This workflow will install Python dependencies, run tests, and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: CI
Expand Down Expand Up @@ -30,10 +30,10 @@ jobs:
- name: Lint with ruff
run: |
poetry run ruff check --diff .
- name: Check black
- name: Format with ruff
run: |
poetry run ruff format --check --diff .
- name: Check mypy
- name: Check type hints mypy
run: |
poetry run mypy .
- name: Test with pytest
Expand All @@ -42,7 +42,7 @@ jobs:
poetry run coverage report && \
poetry run coverage xml -o cov.xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
env_vars: OS,PYTHON
Expand Down