Skip to content

Bump the ci-dependencies group with 5 updates #368

Bump the ci-dependencies group with 5 updates

Bump the ci-dependencies group with 5 updates #368

Workflow file for this run

name: Tests
on:
workflow_dispatch:
push:
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v5 # v4.2.2
- name: Set up Python
uses: actions/setup-python@v6 # v5.3.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Run tests with pytest
run: pytest tests/ --cov=quick --cov-report=xml
- name: Run mypy
run: mypy quick
- name: Run ruff
run: ruff check quick
- name: Report to codecov
uses: codecov/codecov-action@v5 # v5.1.2
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Report to Codacy
uses: codacy/codacy-coverage-reporter-action@v1.3.0 # v1.3.0
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: ./coverage.xml