From dcd0372dbe9ff9b2c5eed0075f8147908aa1bfa7 Mon Sep 17 00:00:00 2001 From: Samuel James Date: Thu, 23 Jul 2026 15:38:40 +0000 Subject: [PATCH] ci: add Gitea Actions workflow --- .gitea/workflows/ci.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitea/workflows/ci.yaml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml new file mode 100644 index 0000000..c7b881f --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,12 @@ +name: CI +on: [pull_request] +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + - run: pip install -r requirements.txt 2>/dev/null || true + - run: find . -name '*.py' -exec python -m py_compile {} +