Bump qiskit from 2.4.2 to 2.5.1 #2590
Workflow file for this run
This file contains hidden or 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
| # This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
| name: testing | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| python-version: [3.11, 3.12] | |
| os: [ubuntu-latest, macOS-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 # Fetch all history for all branches and tags | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Cache dependencies ${{ matrix.python-version }} | |
| uses: actions/cache@v6 | |
| with: | |
| path: ${{ env.pythonLocation }} | |
| key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }} | |
| - name: Cache testmon data | |
| uses: actions/cache@v6 | |
| with: | |
| path: .testmondata | |
| key: testmon-${{ runner.os }}-${{ matrix.python-version }}-${{ github.sha }} | |
| restore-keys: | | |
| testmon-${{ runner.os }}-${{ matrix.python-version }}- | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| - name: Install package | |
| run: | | |
| python -m pip install .[tests] | |
| - name: Test with pytest (all tests on main branch) | |
| if: github.ref == 'refs/heads/main' | |
| run: | | |
| pytest -v | |
| - name: Test with pytest (affected tests only on PR) | |
| if: github.event_name == 'pull_request' | |
| env: | |
| FIREBASE_CERTIFICATE: ${{ secrets.FIREBASE_CERTIFICATE }} | |
| run: | | |
| pytest --testmon -v |