Skip to content

initial repo setup

initial repo setup #1

Workflow file for this run

name: Formatting check
on:
pull_request:
branches: ['main']
workflow_dispatch:
jobs:
formatting-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pylint black isort
- name: Check isort, pylint, black, headers
run: |
pylint qbraid_qir tests tools
black --check qbraid_qir tests tools
isort --check-only qbraid_qir tests tools
python tools/verify_headers.py qbraid_qir tests