Bump codecov/codecov-action from 4 to 5 #650
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
architecture: x64 | |
cache: 'pip' | |
cache-dependency-path: 'requirements.txt' | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Install package | |
run: | | |
pip install . | |
- name: Format check with ruff | |
run: | | |
ruff format --diff | |
- name: Lint check with ruff | |
run: | | |
ruff check | |
- name: Type check with mypy | |
run: | | |
mypy src/dearprudence | |
- name: Test with pytest | |
run: | | |
pytest -v --cov dearprudence --cov-report term-missing --cov-report xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v5 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |