Skip to content

Add blank line for improved readability in test_utils.py #2

Add blank line for improved readability in test_utils.py

Add blank line for improved readability in test_utils.py #2

Workflow file for this run

name: Check Code Formatting
on:
push:
branches:
- main
paths-ignore:
- '**/*.md'
- '**/*.rst'
pull_request:
branches: [ main ]
paths-ignore:
- '**/*.md'
- '**/*.rst'
workflow_dispatch:
jobs:
check_formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install Ruff
run: python -m pip install ruff
- name: Test with Ruff
run: ruff check .
- name: Lint with Ruff
run: ruff format --check .