Skip to content

Workflow file for this run

# name: Run Qadence docs tests.
# on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
# workflow_dispatch: {}
# concurrency:
# group: ${{ github.head_ref || github.run_id }}
# cancel-in-progress: true
# jobs:
# test_qadence_ubuntu:
# name: Test Qadence docs (ubuntu)
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/checkout@v4
# - name: Set up Python 3.10
# uses: actions/setup-python@v4
# with:
# python-version: '3.10'
# - name: Install Hatch
# run: |
# pip install hatch
# - name: Run doc tests
# run: |
# hatch -e docs run test-docs