This commit is contained in:
parent
cdf651b804
commit
b5b107417e
1 changed files with 33 additions and 0 deletions
33
.forgejo/workflows/test.yaml
Normal file
33
.forgejo/workflows/test.yaml
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
name: Test
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
workflow_call:
|
||||||
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
pytest:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: alpine:latest
|
||||||
|
steps:
|
||||||
|
- run: apk add nodejs py3-pip
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- run: pip install -r requirements.txt
|
||||||
|
- run: pytest
|
||||||
|
|
||||||
|
# ruff-check:
|
||||||
|
# runs-on: docker
|
||||||
|
# container:
|
||||||
|
# image: debian:bookworm
|
||||||
|
# steps:
|
||||||
|
# - uses: actions/checkout@v4
|
||||||
|
# - run: pip install -r requirements.txt
|
||||||
|
# - run: apt install ruff
|
||||||
|
# - run: ruff check
|
Loading…
Add table
Reference in a new issue