-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (36 loc) · 1.02 KB
/
python-app.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test-backend:
runs-on: ubuntu-latest
container:
image: ghcr.io/smucclaw/webapi-ci:main
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.4.15"
enable-cache: true
- name: Install dependencies
run: uv sync --all-extras
working-directory: natural4-server
- name: Run tests
run:
uv run pytest
working-directory: natural4-server
env:
v8k_startport: 8091