We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9883ee commit 7161f36Copy full SHA for 7161f36
.github/workflows/test.yml
@@ -0,0 +1,26 @@
1
+name: Test build project and run tests without docker
2
+
3
+on: [ push, pull_request ]
4
5
+jobs:
6
+ build-and-launch:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Checkout repository
10
+ uses: actions/checkout@v4
11
12
+ - name: Set up Python 3.14
13
+ uses: actions/setup-python@v5
14
+ with:
15
+ python-version: '3.14'
16
+ cache: 'pip'
17
18
+ - name: Install dependencies
19
+ run: |
20
+ python -m pip install --upgrade pip
21
+ pip install -r requirements.txt
22
23
+ - name: Run Python tests
24
+ working-directory: ./backend/file_utils
25
26
+ python -m pytest tests/ -v --cov=./ --cov-report=xml
0 commit comments