Skip to content

Commit

Permalink
workflows/tests: expand matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
airwoodix committed Feb 23, 2024
1 parent 985ad25 commit f142700
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
matrix:
qiskit-version: ['0.46.0', '1.0.1']
python-version: ['3.12']
python-version: ['3.9', '3.10', '3.11', '3.12']
os: ["ubuntu-latest"]
steps:
- name: Set up Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -76,10 +76,10 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
qiskit-version: ['1.0.1']
python-version: ['3.12']
qiskit-version: ['0.46.0', '1.0.1']
python-version: ['3.9', '3.10', '3.11', '3.12']
os: ['ubuntu-latest']
resolution-strategy: ['highest']
resolution-strategy: ['highest', 'lowest-direct']
steps:
- uses: actions/checkout@v4
- name: Check shell scripts
Expand All @@ -99,10 +99,10 @@ jobs:
echo "qiskit==${{ matrix.qiskit-version }}" > qiskit-override.txt
# FIXME: https://github.com/Qiskit/qiskit_sphinx_theme/issues/567
echo 'furo==2023.9.10' > furo-override.txt
uv pip compile pyproject.toml --all-extras --override qiskit-override.txt --override furo-override.txt > requirements.txt
uv pip compile pyproject.toml --all-extras --override qiskit-override.txt --override furo-override.txt | tee requirements.txt
- name: Install project
run: |
uv pip sync --strict --reinstall requirements.txt
uv pip sync --strict requirements.txt
uv pip install 'qiskit-aqt-provider @ .' # for the plugins
- name: Check version numbers consistency
run: poe version_check
Expand Down

0 comments on commit f142700

Please sign in to comment.