Add forgejo test job
Some checks failed
Test / pytest (push) Failing after 10s

This commit is contained in:
polyfloyd 2025-03-23 14:05:06 +01:00
parent cdf651b804
commit 6be933e4a1

View file

@ -0,0 +1,32 @@
name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
jobs:
pytest:
runs-on: docker
container:
image: debian:bookworm
steps:
- 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