Skip to content

Draft: Add check_ref_clock-functions for SHF*, and HDAWG #593

Draft: Add check_ref_clock-functions for SHF*, and HDAWG

Draft: Add check_ref_clock-functions for SHF*, and HDAWG #593

Workflow file for this run

name: Lint check
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
tool: [black, lint, typing]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: pip install -U tox
- name: Run Tox
run: tox -e ${{ matrix.tool }}