test CI
Some checks failed
/ mypy (push) Has been cancelled
/ coverage (push) Has been cancelled
/ test (push) Has been cancelled

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

View file

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