Skip to content

Merge pull request #63 from mxstack/dependabot/github_actions/actions… #333

Merge pull request #63 from mxstack/dependabot/github_actions/actions…

Merge pull request #63 from mxstack/dependabot/github_actions/actions… #333

Workflow file for this run

name: Lint
on:
push:
workflow_call:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
cache-dependency-glob: "pyproject.toml"
- name: Set up Python 3.10
run: uv python install 3.10
- name: Install Project
run: make install
- name: Run checks
run: make check