Update README.md #495
This file contains 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
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
# We use "ruff" for linting and formatting | |
name: Format and Lint | |
on: | |
push: | |
pull_request: | |
branches: [main] | |
jobs: | |
format_and_lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "^1.22" | |
- name: Download go misspell | |
run: go install github.com/client9/misspell/cmd/misspell@latest | |
- name: Run misspell | |
run: misspell -error . | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
- name: Set up Python | |
run: uv python install | |
- name: Install the project | |
run: uv tool install ruff | |
- name: Lint with ruff | |
run: | | |
uvx ruff check --select I . | |
- name: Format with ruff | |
run: | | |
uvx ruff format --check . |