Skip to content

tests: test against multiple Qiskit versions #6

tests: test against multiple Qiskit versions

tests: test against multiple Qiskit versions #6

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
# Run on manual triggers
workflow_dispatch:
env:
PYTHONIOENCODING: utf-8
jobs:
tests:
name: tests-python${{ matrix.python-version }}-${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
qiskit-version: ['0.46.0', '1.0.1']
python-version: ['3.12']
os: ["ubuntu-latest"]
steps:
- uses: actions/checkout@v4
- name: Check shell scripts
uses: ludeeus/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install uv
run: |
# https://github.com/astral-sh/uv/issues/1386#issuecomment-1947801083
echo "VIRTUAL_ENV=${Python_ROOT_DIR}" >> $GITHUB_ENV
pip install uv
- name: Build package
run: |
uv pip install hatch
hatch build
- name: Install package wheel
run: |
uv pip install --strict 'qiskit-aqt-provider[examples] @ dist/qiskit_aqt_provider-1.3.0-py3-none-any.whl'
- name: Run examples (linux)
run: |
./examples/run_all.sh
# - name: Lock
# run: poetry install --sync
# - name: Check version numbers consistency
# run: poetry run poe version_check
# if: startsWith(matrix.os, 'ubuntu')
# - name: Check formatting
# run: poetry run poe format_check
# if: startsWith(matrix.os, 'ubuntu')
# - name: Linting
# run: poetry run poe lint
# if: startsWith(matrix.os, 'ubuntu')
# - name: Type checking
# run: poetry run poe typecheck
# if: startsWith(matrix.os, 'ubuntu')
# - name: Testing
# run: poetry run poe test --cov_opts="-a" # add to examples coverage
# if: startsWith(matrix.os, 'ubuntu')
# - name: Docs
# run: poetry run poe docs
# if: startsWith(matrix.os, 'ubuntu')
# - name: Generate coverage report
# run: poetry run coverage lcov -o coverage.lcov
# if: startsWith(matrix.os, 'ubuntu')
# - name: Upload coverage report
# uses: coverallsapp/github-action@v2
# with:
# file: coverage.lcov
# parallel: true
# flag-name: run ${{ join(matrix.*, ' - ') }}
# if: startsWith(matrix.os, 'ubuntu')
# finish:
# needs: tests
# runs-on: ubuntu-latest
# steps:
# - name: Close parallel coverage build
# uses: coverallsapp/github-action@v2
# with:
# parallel-finished: true