Skip to content
This repository was archived by the owner on Apr 15, 2026. It is now read-only.

chore(deps): bump codecov/codecov-action from 5.5.2 to 6.0.0 (#217) #522

chore(deps): bump codecov/codecov-action from 5.5.2 to 6.0.0 (#217)

chore(deps): bump codecov/codecov-action from 5.5.2 to 6.0.0 (#217) #522

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install poetry
run: pipx install poetry==${{ vars.POETRY_V2_VERSION }}
- name: Set up Python
uses: actions/setup-python@v5
with:
cache: "poetry"
python-version: ${{ matrix.python-version }}
cache-dependency-path: "pyproject.toml"
- name: Install invoke
run: pipx install invoke
- name: Install Dependencies
run: invoke install
# We run the `mypy` check here since it requires all of the packages to be installed.
# Doing that in the pre-commit step would be duplicative and spend more time in CI.
- name: Validate Types
run: invoke type-check
- name: Run Tests
run: invoke test
- name: Upload Test Coverage Reports
uses: codecov/codecov-action@v6.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}