We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cceec9e commit 5d32a2fCopy full SHA for 5d32a2f
.github/workflows/ci.yml
@@ -0,0 +1,36 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
15
+ strategy:
16
+ matrix:
17
+ python-version: [3.12]
18
19
+ steps:
20
+ - name: Checkout code
21
+ uses: actions/checkout@v2
22
23
+ - name: Set up Python ${{ matrix.python-version }}
24
+ uses: actions/setup-python@v2
25
+ with:
26
+ python-version: ${{ matrix.python-version }}
27
28
+ - name: Install dependencies
29
+ run: |
30
+ cd falcon_backend/
31
+ python -m pip install --upgrade pip
32
+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
33
34
+ - name: Run tests
35
36
+ pytest
0 commit comments