Skip to content

[pull] main from openwallet-foundation:main #519

[pull] main from openwallet-foundation:main

[pull] main from openwallet-foundation:main #519

Workflow file for this run

name: Ruff Code Formatter and Linting Check
"on":
pull_request:
branches:
- main
permissions:
contents: read
pull-requests: read
checks: write
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: "3.13"
- name: Ruff Format Check
uses: chartboost/ruff-action@e18ae971ccee1b2d7bbef113930f00c670b78da4 # v1.0.0
with:
version: 0.14.0
args: "format --check"
- name: Ruff Lint Check
uses: chartboost/ruff-action@e18ae971ccee1b2d7bbef113930f00c670b78da4 # v1.0.0
with:
version: 0.14.0
args: "check"