This commit is contained in:
parent
db6918cceb
commit
f388f74051
1 changed files with 15 additions and 0 deletions
15
.forgejo/workflows/ci.yml
Normal file
15
.forgejo/workflows/ci.yml
Normal 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
|
||||||
Loading…
Add table
Reference in a new issue