Add forgejo test job
All checks were successful
Test / pytest (push) Successful in 18s

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

View file

@ -0,0 +1,37 @@
name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
env:
SLIGRO_USERNAME: ${{ secrets.SLIGRO_USERNAME }}
SLIGRO_PASSWORD: ${{ secrets.SLIGRO_PASSWORD }}
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