forge: seed CI machine gate
Some checks are pending
ci / test (push) Waiting to run

This commit is contained in:
forge-bot 2026-07-10 13:28:11 +00:00
parent 3e5adaf547
commit 698cb13c1d

12
.forgejo/workflows/ci.yml Normal file
View file

@ -0,0 +1,12 @@
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