test CI
This commit is contained in:
parent
07af5a7d18
commit
bc7c9c89fa
1 changed files with 27 additions and 0 deletions
27
.forgejo/workflows/ci.yaml
Normal file
27
.forgejo/workflows/ci.yaml
Normal 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
|
||||||
|
|
Loading…
Reference in a new issue