Skip to content

Merge pull request #91 from inventree/SchrodingersGat-patch-2 #387

Merge pull request #91 from inventree/SchrodingersGat-patch-2

Merge pull request #91 from inventree/SchrodingersGat-patch-2 #387

Workflow file for this run

name: Style Checks
on: ["push", "pull_request"]
jobs:
style:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install Deps
run: |
pip install -U ruff
- name: Style Checks
run: |
ruff check