Skip to content

Chore: add docstrings to functions and methods (#10) #18

Chore: add docstrings to functions and methods (#10)

Chore: add docstrings to functions and methods (#10) #18

Workflow file for this run

name: Run format check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.12
- run: echo "VIRTUAL_ENV=${Python_ROOT_DIR}" >> $GITHUB_ENV
- run: pip install uv
- name: Install dependencies
working-directory: ./backend
run: uv pip install -r requirements.dev.in
- name: Run lint and format check
working-directory: ./backend
run: ./format c