revbank-inflatinator/.forgejo/workflows/test.yaml
polyfloyd 6be933e4a1
Some checks failed
Test / pytest (push) Failing after 10s
Add forgejo test job
2025-03-23 14:17:27 +01:00

32 lines
531 B
YAML

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