Skip to content

[pre-commit.ci] pre-commit autoupdate (#259) #156

[pre-commit.ci] pre-commit autoupdate (#259)

[pre-commit.ci] pre-commit autoupdate (#259) #156

Workflow file for this run

# 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