Add CI: pip install + py_compile check
Some checks failed
CI / check (push) Failing after 14s

This commit is contained in:
tmk3ki 2026-07-25 19:11:23 +09:00
parent db6918cceb
commit f388f74051

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

@ -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