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