Skip to content

added lint and diff checks to every commit on the branch #1650

added lint and diff checks to every commit on the branch

added lint and diff checks to every commit on the branch #1650

Workflow file for this run

name: lint
on:
push:
branches: ["**"]
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.13"
steps:
- uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
uv sync --extra dev
- name: Run Lint
run: |
make lint