feat: Add Backend CI workflow for linting and setup
Some checks failed
Backend CI / lint (push) Failing after 2m43s

This commit is contained in:
JSC
2025-07-30 22:27:54 +02:00
parent 4e3c489f31
commit f17b2d053e

31
.gitea/workflows/test.yml Normal file
View File

@@ -0,0 +1,31 @@
name: Backend CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: "Set up python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install requirements
run: uv sync --locked --all-extras --dev
- name: Run linter
run: uv run ruff check