test CI
Some checks failed
/ test (push) Failing after 19s
/ mypy (push) Failing after 14s
/ coverage (push) Failing after 14s

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

View file

@ -0,0 +1,27 @@
on: [push]
jobs:
test:
runs-on: docker
container: fedora:40
steps:
- uses: actions/checkout@v4
- run: sudo dnf install tox
- run: tox
mypy:
runs-on: docker
container: fedora:40
steps:
- uses: actions/checkout@v4
- run: sudo dnf install tox
- run: tox -e mypy
coverage:
runs-on: docker
container: fedora:40
steps:
- uses: actions/checkout@v4
- run: sudo dnf install tox
- run: tox -e coverage