From f388f740512e2ab22f9a31ee76644599032fd241 Mon Sep 17 00:00:00 2001 From: tmk3ki Date: Sat, 25 Jul 2026 19:11:23 +0900 Subject: [PATCH] Add CI: pip install + py_compile check --- .forgejo/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 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..7e5f59d --- /dev/null +++ b/.forgejo/workflows/ci.yml @@ -0,0 +1,15 @@ +name: CI + +on: + push: + pull_request: + +jobs: + check: + runs-on: docker + container: + image: python:3.12-slim + steps: + - uses: actions/checkout@v4 + - run: pip install --no-cache-dir -r requirements.txt + - run: python -m py_compile app.py