-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (37 loc) · 881 Bytes
/
lint-backend.yml
File metadata and controls
45 lines (37 loc) · 881 Bytes
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
45
name: Lint Backend
on:
push:
branches:
- master
paths:
- "backend/**"
pull_request:
branches:
- master
paths:
- "backend/**"
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./backend
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "0.9.18"
enable-cache: true
cache-dependency-glob: "backend/uv.lock"
- name: Install dependencies
run: uv sync
- name: Run ruff check
run: uv run ruff check --output-format=github .
- name: Run ruff format check
run: uv run ruff format --check --diff .