chore(deps): Update actions/setup-python action to v6 (#42) #14
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: Lint with Black | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Set up Python | |
uses: actions/setup-python@v6 | |
with: | |
python-version: "3.13" | |
- name: Install dependencies | |
run: | | |
pip3 install --no-cache-dir poetry==2.1.4 | |
poetry install --no-interaction --no-ansi --no-root | |
- name: Check formatting | |
run: make fmt-check |