Skip to content

Fix thing description to include base URL #120

Fix thing description to include base URL

Fix thing description to include base URL #120

Workflow file for this run

name: Test
on:
push:
release:
types:
- created
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install Dependencies
run: pip install -e .[dev]
- name: Lint with Ruff
run: ruff check --format=github .
- name: Analyse with MyPy
run: mypy src
- name: Test with pytest
run: pytest --cov=src --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
flags: unittests
name: codecov-umbrella-${{ matrix.python }}
fail_ci_if_error: false
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}