Skip to content

Update itinerant_ruff_fixes.yml: runs-on: ubuntu-24.04-arm #333

Update itinerant_ruff_fixes.yml: runs-on: ubuntu-24.04-arm

Update itinerant_ruff_fixes.yml: runs-on: ubuntu-24.04-arm #333

# This Action uses minimal steps to run in ~5 seconds to rapidly:
# look for typos in the codebase using codespell, and
# lint Python code using ruff and provide intuitive GitHub Annotations to contributors.
# https://github.com/codespell-project/codespell#readme
# https://docs.astral.sh/ruff/
name: ci
on:
push:
# branches: [main, master]
pull_request:
# branches: [main, master]
jobs:
codespell_and_ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@v2
- uses: astral-sh/ruff-action@v3
# with:
# args: --ignore=ALL
# - run: pip install --user codespell[toml] ruff
# - run: codespell || true # --ignore-words-list="" --skip="*.css,*.js,*.lock,*.po"
# - run: ruff check --output-format=github --select=E9,F63,F7 --target-version=py38 .
# - run: ruff check --output-format=github --select=E9,F63,F7,F82 --target-version=py38 .
# - run: ruff check --output-format=github --line-length=200 --target-version=py38 .
# - run: ruff check --output-format=github --target-version=py38 .
# - run: ruff check --output-format=github