Skip to content

Chore/implement playwright axe and axe core #507

Chore/implement playwright axe and axe core

Chore/implement playwright axe and axe core #507

Workflow file for this run

name: pr_ci_backend
on:
pull_request:
branches:
- main
types: [opened, reopened, synchronize]
jobs:
backend:
name: Run PR Backend Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python Environment
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Dependencies
run: |
python -m pip install --upgrade uv
uv venv
uv pip install -r backend/requirements-dev.txt
- name: Activate Virtual Environment
run: |
. .venv/bin/activate
echo PATH=$PATH >> $GITHUB_ENV
- name: Run Ruff Format - Formatting Check
run: ruff ./backend
- name: Run Ruff - Linting and Import Sorting Check
if: always()
run: ruff ./backend
- name: Run mypy - Static Type Checking
if: always()
run: mypy ./backend --config-file ./backend/pyproject.toml