Fix random number generator seed argument for quantum_volume (#14586)… #2490
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
--- | |
name: Tests | |
on: | |
push: | |
branches: [ main, 'stable/*' ] | |
pull_request: | |
branches: [ main, 'stable/*' ] | |
merge_group: | |
jobs: | |
tests: | |
if: github.repository_owner == 'Qiskit' | |
name: tests-c-${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
# Used for the x86_64 builds. | |
- macos-13 | |
# Used for the ARM builds. | |
- macos-14 | |
- ubuntu-24.04-arm | |
- windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: cargo install cbindgen | |
- name: Run tests | |
run: make ctest |