Skip to content

do not fast fail on linting errors for specific python version #10

do not fast fail on linting errors for specific python version

do not fast fail on linting errors for specific python version #10

name: formatting check
on:
push:
pull_request:
jobs:
formatting-check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.13" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: pip install -r requirements.txt
- name: Check formatting
run: ruff format --check