test CI
Some checks failed
/ test (push) Failing after 46s
/ mypy (push) Failing after 17s
/ coverage (push) Failing after 17s

This commit is contained in:
Fabio Valentini 2024-10-22 11:44:25 +02:00
parent 07af5a7d18
commit 7ed9f85348
No known key found for this signature in database
GPG key ID: 5AC5F572E5D410AF

View file

@ -0,0 +1,33 @@
on: [push]
jobs:
test:
runs-on: docker
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install tox
- run: tox
mypy:
runs-on: docker
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install tox
- run: tox -e mypy
coverage:
runs-on: docker
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install tox
- run: tox -e coverage