Update pyproject.toml to use PEP-621 dependency specification #192
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code format and lint | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v6 | |
with: | |
python-version: "3.9" | |
- name: Install dependencies | |
run: uv sync --extra dev | |
- name: Run pre-commit | |
run: uv run pre-commit run --all-files --show-diff-on-failure --color=always |