Skip to content

[Feature] Correlated readout and extending ReadoutNoise #183

[Feature] Correlated readout and extending ReadoutNoise

[Feature] Correlated readout and extending ReadoutNoise #183

Workflow file for this run

name: Linting
on:
push:
branches:
- main
pull_request: {}
workflow_dispatch: {}
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: Checkout main code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install pre-commit
run: |
pip install pre-commit
pre-commit install
- name: Check files and lint
run: |
pre-commit run --all-files