Skip to content

Update issue templates #36

Update issue templates

Update issue templates #36

Workflow file for this run

name: Format using Ruff
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ruff:
if: github.repository_owner == 'QCFD-Lab'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12.5
architecture: x64
cache: "pip" # caching pip dependencies
- name: Install Ruff
run: |
pip install --upgrade pip
pip install -e .[cpu,dev]
pip install "ruff==0.9.2"
- name: Run Ruff
run: ruff check qlbm