Skip to content

Merge pull request #2 from practical-python-org/fix/update-repo-urls #9

Merge pull request #2 from practical-python-org/fix/update-repo-urls

Merge pull request #2 from practical-python-org/fix/update-repo-urls #9

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version-file: .python-version
- name: Install uv
run: pip install uv
- name: Install dependencies
run: uv sync --locked
- name: Run checks
run: uv run pre-commit run --all-files --show-diff-on-failure