1 parent 39fc02c commit efc5cd4Copy full SHA for efc5cd4
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,25 @@
1
+name: ci
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ python-version: ["3.10", "3.11", "3.12"]
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: actions/setup-python@v5
18
+ with:
19
+ python-version: ${{ matrix.python-version }}
20
+ - name: Install
21
+ run: pip install -r requirements.txt
22
+ - name: Test
23
+ run: pytest -q
24
+ - name: Pipeline demo
25
+ run: python -m app.services.pipeline_demo
0 commit comments