Skip to content
This repository was archived by the owner on Jul 4, 2026. It is now read-only.

feat[servers]: add server user access #53

feat[servers]: add server user access

feat[servers]: add server user access #53

Workflow file for this run

name: Code Quality Checks
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
export PIP_BREAK_SYSTEM_PACKAGES=1
python -m pip install --upgrade pip
pip install uv ruff
uv sync
- name: Run Ruff Format
run: |
ruff format --check .