Skip to content

feat: build autoqasm program directly from main decorator #1090

feat: build autoqasm program directly from main decorator

feat: build autoqasm program directly from main decorator #1090

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Check code format
on:
pull_request:
branches:
- main
- feature/**
permissions:
contents: read
jobs:
check-code-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Python
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
with:
python-version: '3.9'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -e .[test]
- name: Run code format checks
run: |
tox -e linters_check