1 parent b930c10 commit 1d64420Copy full SHA for 1d64420
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,30 @@
1
+name: PayeeProof API CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ timeout-minutes: 10
11
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v4
15
16
+ - name: Set up Python
17
+ uses: actions/setup-python@v5
18
+ with:
19
+ python-version: '3.11'
20
21
+ - name: Install dependencies
22
+ run: |
23
+ python -m pip install --upgrade pip
24
+ pip install -r requirements.txt pytest
25
26
+ - name: Syntax check
27
+ run: python -m py_compile app.py
28
29
+ - name: Run regression suite
30
+ run: pytest -q
0 commit comments