Skip to content

Support adding additional hidden layers to the initial projection #3540

Support adding additional hidden layers to the initial projection

Support adding additional hidden layers to the initial projection #3540

Workflow file for this run

name: Lint (type checking, security, code quality, ruff)
on:
pull_request:
branches:
- "main"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: false
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
# Install a specific version of uv.
version: "0.9.5"
- name: Install dependencies
run: |
uv sync --extra dev --no-install-project
uv tool install pre-commit --with pre-commit-uv --force-reinstall
- name: Linting
run: |
pre-commit run --all-files