indent #158
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |