Skip to content

Merge pull request #71 from dribia/dependabot/pip/main/all-52714ecbdd #118

Merge pull request #71 from dribia/dependabot/pip/main/all-52714ecbdd

Merge pull request #71 from dribia/dependabot/pip/main/all-52714ecbdd #118

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
branches:
- main
jobs:
unit-tests:
name: Unit Tests
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
os: [ubuntu-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: snok/install-poetry@v1
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install Dependencies
run: poetry install --only main,test
- name: Test
run: make test-unit
- uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}