Skip to content

build(deps): bump actions/upload-artifact from 4 to 5 (#167) #151

build(deps): bump actions/upload-artifact from 4 to 5 (#167)

build(deps): bump actions/upload-artifact from 4 to 5 (#167) #151

name: Minimum version tests
on:
push:
branches:
- main
- 'stable/**'
pull_request:
branches:
- main
- 'stable/**'
jobs:
tests:
name: minimum version tests (${{ matrix.os }}, ${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: [3.9]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies (minimum versions)
shell: bash
run: |
python -m pip install --upgrade pip
python -m pip install extremal-python-dependencies~=0.0.5
pip install "tox==$(extremal-python-dependencies get-tox-minversion)"
extremal-python-dependencies pin-dependencies-to-minimum --inplace
- name: Test using tox environment
shell: bash
env:
QISKIT_IBM_QPU: ${{ secrets.QISKIT_IBM_QPU }}
QISKIT_IBM_TOKEN: ${{ secrets.QISKIT_IBM_TOKEN }}
QISKIT_IBM_CHANNEL: ${{ secrets.QISKIT_IBM_CHANNEL }}
QISKIT_IBM_INSTANCE: ${{ secrets.QISKIT_IBM_INSTANCE }}
run: |
tox -e py,notebook,doctest --parallel --parallel-no-spinner