Skip to content

1.6.1rc0

1.6.1rc0 #2636

Workflow file for this run

name: Ruff Code Formatter and Linting Check
on:
pull_request:
branches:
- main
jobs:
lint:
permissions:
contents: read
pull-requests: read
checks: write
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.13"
- name: Ruff Format Check
uses: chartboost/ruff-action@e18ae971ccee1b2d7bbef113930f00c670b78da4 # v1.0.0
with:
version: 0.15.0
args: "format --check"
- name: Ruff Lint Check
uses: chartboost/ruff-action@e18ae971ccee1b2d7bbef113930f00c670b78da4 # v1.0.0
with:
version: 0.15.0
args: "check"