Skip to content

Merge pull request #30 from payjp/ruff #15

Merge pull request #30 from payjp/ruff

Merge pull request #30 from payjp/ruff #15

Workflow file for this run

name: Ruff
on: [push, pull_request]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Lint with ruff
run: |
ruff check .
- name: Format with ruff
run: |
ruff format --check .