noncliff: define _proj
subroutine for projectrand!
and test multi-qubit projection for stabilizer and non-stabilizer states
#1925
Workflow file for this run
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: CI-nightly | |
on: | |
push: | |
branches: [master, main] | |
tags: ["*"] | |
pull_request: | |
env: | |
PYTHON: ~ | |
jobs: | |
test: | |
name: Julia ${{ matrix.version }} - t=${{ matrix.threads }} - jet=${{ matrix.jet }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
arch: x64 | |
version: nightly | |
threads: 2 | |
jet: 'false' | |
- os: ubuntu-latest | |
arch: x64 | |
version: '1' | |
threads: 2 | |
jet: 'true' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: julia-actions/cache@v1 | |
- uses: julia-actions/julia-buildpkg@v1 | |
- uses: julia-actions/julia-runtest@v1 | |
env: | |
JULIA_NUM_THREADS: ${{ matrix.threads }} | |
JET_TEST: ${{ matrix.jet }} | |
- uses: julia-actions/julia-processcoverage@v1 | |
- uses: codecov/codecov-action@v4 | |
with: | |
file: lcov.info | |
token: ${{ secrets.CODECOV_TOKEN }} |