ci: only install graphviz dependency under Linux #3
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: Development version tests | |
on: | |
push: | |
branches: | |
- main | |
- 'stable/**' | |
pull_request: | |
branches: | |
- main | |
- 'stable/**' | |
schedule: | |
- cron: '0 1 * * *' | |
jobs: | |
tests: | |
name: development version tests (${{ matrix.os }}, ${{ matrix.python-version }}) | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
max-parallel: 4 | |
matrix: | |
os: [ubuntu-latest] | |
python-version: [3.9, 3.12] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies (development versions) | |
shell: bash | |
run: | | |
python -m pip install --upgrade pip tox | |
python -m pip install extremal-python-dependencies==0.0.3 | |
extremal-python-dependencies pin-dependencies \ | |
"qiskit @ git+https://github.com/Qiskit/qiskit.git" \ | |
"qiskit-ibm-runtime @ git+https://github.com/Qiskit/qiskit-ibm-runtime.git" \ | |
--inplace | |
- name: Install binary dependencies | |
run: | | |
sudo apt-get install -y graphviz | |
- name: Test using tox environment | |
shell: bash | |
run: | | |
toxpyversion=$(echo ${{ matrix.python-version }} | sed -E 's/^([0-9]+)\.([0-9]+).*$/\1\2/') | |
tox -epy${toxpyversion} | |
tox -epy${toxpyversion}-notebook | |
tox -edoctest |