ssot-live/.forgejo/workflows/ci.yml
forge-bot ccb0075f74
Some checks are pending
ci / test (push) Waiting to run
forge: seed CI machine gate
2026-07-09 01:01:25 +00:00

12 lines
261 B
YAML

name: ci
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
python3 -m pip install --quiet pytest
pytest -q; rc=$?
[ $rc -eq 5 ] && rc=0
exit $rc