Skip to content

Bump actions/checkout from 4 to 6 #52

Bump actions/checkout from 4 to 6

Bump actions/checkout from 4 to 6 #52

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
backend:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
with:
version: "latest"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --dev
- name: Check (lint + format + test)
run: uv run task check
frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "20"
- name: Install dependencies
run: cd frontend && npm ci
- name: Lint & format check
run: cd frontend && npm run lint
- name: Run tests
run: cd frontend && npm test
CI:
runs-on: ubuntu-latest
needs: [backend, frontend]
steps:
- run: echo "All checks passed"