Skip to content

Merge pull request #20 from memalhot/dependabot/github_actions/action… #53

Merge pull request #20 from memalhot/dependabot/github_actions/action…

Merge pull request #20 from memalhot/dependabot/github_actions/action… #53

Workflow file for this run

name: Run pre-commit checks
on:
push:
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Set up uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: |
uv sync --all-groups
- uses: pre-commit/action@v3.0.1