From ccb0075f74f5e78d4a7d6c3e7cc586e00da26eef Mon Sep 17 00:00:00 2001 From: forge-bot Date: Thu, 9 Jul 2026 01:01:25 +0000 Subject: [PATCH] forge: seed CI machine gate --- .forgejo/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .forgejo/workflows/ci.yml diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml new file mode 100644 index 0000000..3959c61 --- /dev/null +++ b/.forgejo/workflows/ci.yml @@ -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