Skip to content

fix: add return value #236

fix: add return value

fix: add return value #236

Workflow file for this run

name: Tests
on:
push:
branches: [master]
paths-ignore:
- '.github/**'
pull_request:
paths-ignore:
- '.github/**'
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.11', '3.12']
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install
run: |
python -m pip install --upgrade pip
python -m pip install hatch
- name: Run linters
run: hatch run lint:all
- name: Run tests
run: hatch run test-cov
- name: "Upload coverage to Codecov"
if: matrix.python-version == 3.12 # Only upload coverage once per run
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}