Skip to content

refactor(frontend): make useAuthSubmit redirect configurable #14

refactor(frontend): make useAuthSubmit redirect configurable

refactor(frontend): make useAuthSubmit redirect configurable #14

Workflow file for this run

name: Backend CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-typecheck-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: template/backend
steps:

Check failure on line 16 in .github/workflows/backend-ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/backend-ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
- name: Checkout code
uses: actions/checkout@v4
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.local/bin uv" >> $GITHUB_PATH
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: uv sync
- name: Run ruff linting
run: uv run ruff check .
- name: Run ruff formatting check
run: uv run ruff format --check .
-name: Run type checking with ty
run: uv run ty
- name: Run pytest
run: uv run pytest