Skip to content

Style

Style #277

Workflow file for this run

name: Style
on:
push:
branches:
- main
pull_request:
branches:
- main
release:
types:
- published
schedule:
# Run nightly to check that tests are working with latest dependencies
- cron: "0 0 * * *"
jobs:
style:
strategy:
matrix:
python-version: ["3.8", "3.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: "./.github/actions/test_setup"
with:
python-version: ${{ matrix.python-version }}
- name: ruff check
if: ${{ always() }}
run: ruff check .
- name: ruff format
if: ${{ always() }}
run: ruff format . --check