revbank-inflatinator/.forgejo/workflows/test.yaml
polyfloyd 7aba3efaba
Some checks failed
Test / pytest (push) Failing after 15s
Add forgejo test job
2025-03-23 14:23:33 +01:00

33 lines
587 B
YAML

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 --break-system-packages
- 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