Skip to content

Merge pull request #12 from madebygps/keycloak-integration #3

Merge pull request #12 from madebygps/keycloak-integration

Merge pull request #12 from madebygps/keycloak-integration #3

Workflow file for this run

name: Python code quality
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python 3
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: |
uv sync
- name: Lint with ruff
run: |
uv run ruff check .
- name: Check formatting with ruff
run: |
uv run ruff format . --check