revbank-inflatinator/.forgejo/workflows/test.yaml
polyfloyd a13bfa52e7
All checks were successful
Test / pytest (push) Successful in 18s
Run CI test job once per month
2025-03-23 14:41:30 +01:00

31 lines
518 B
YAML

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: '0 0 1 * *' # Monthly
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 ruff
- uses: actions/checkout@v4
- run: pip install -r requirements.txt --break-system-packages
- run: pytest
- run: ruff check