Skip to content

Time series example

Time series example #2

Workflow file for this run

name: Formatting check
on:
pull_request:
branches: ['main']
workflow_dispatch:
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install isort ruff qbraid-cli
- name: Check isort, ruff, headers
run: |
ruff check qbraid_algorithms examples tests tools
isort --check-only qbraid_algorithms tests tools
qbraid admin headers qbraid_algorithms tests tools