Skip to content

Update README

Update README #40

Workflow file for this run

name: Build
on:
push:
branches:
- main
paths:
- 'src/**'
- 'tests/**'
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest"]
python-version: ["3.8", "3.9", "3.10"]
steps:
- name: Checkout sources # Clones your repository into the machine running the action
uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
poetry install
python -m pip install -e .
- name: Run tests
run: poetry run python -m unittest discover tests
- name: Coverage run
run: |
poetry run coverage run -m unittest discover tests
poetry run coverage report -m --fail-under 80
poetry run coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
fail_ci_if_error: true