Skip to content

Better var naming and ignore type checking in test coverage #28

Better var naming and ignore type checking in test coverage

Better var naming and ignore type checking in test coverage #28

Workflow file for this run

name: ci
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
poetry-version: ["1.8.2"]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Python, Poetry and dependencies
uses: packetcoders/action-setup-cache-python-poetry@main
with:
python-version: ${{ matrix.python-version }}
poetry-version: ${{ matrix.poetry-version }}
- name: Run linter
run: make lint
- name: Run tests
run: make test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
if: matrix.os == 'ubuntu-latest'
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: joejacobs/secret-santa-pp