add QuantumCliffordOscarExt to provide convenient API for finitely presented groups via specific group presentation #1999
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 | |
on: | |
push: | |
branches: [master, main] | |
tags: ["*"] | |
pull_request: | |
env: | |
PYTHON: ~ | |
jobs: | |
test: | |
name: Julia ${{ matrix.version }} - t=${{ matrix.threads }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- '1' | |
- '1.9' | |
os: | |
- ubuntu-latest | |
threads: | |
- '1' | |
- '5' | |
arch: | |
- x64 | |
include: | |
- arch: aarch64 | |
os: macos-latest | |
version: '1' | |
threads: '1' | |
- arch: x64 | |
os: macos-latest | |
version: '1' | |
threads: '1' | |
- arch: x64 | |
os: windows-latest | |
version: '1' | |
threads: '1' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: julia-actions/cache@v2 | |
- uses: julia-actions/julia-buildpkg@v1 | |
- name: "Inject Oscar as test dependency (if not Windows and not threaded)" | |
if: ${{ matrix.os != 'windows-latest' && matrix.threads == 1 }} | |
continue-on-error: true | |
run: | | |
sed -i -e "s/\[deps\]/[deps]\nOscar = \"f1435218-dba5-11e9-1e4d-f1a5fab5fc13\"/" test/Project.toml | |
- uses: julia-actions/julia-runtest@v1 | |
env: | |
JULIA_NUM_THREADS: ${{ matrix.threads }} | |
- uses: julia-actions/julia-processcoverage@v1 | |
- uses: codecov/codecov-action@v4 | |
with: | |
file: lcov.info | |
token: ${{ secrets.CODECOV_TOKEN }} | |
docs: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: '1' | |
- uses: julia-actions/cache@v2 | |
- uses: julia-actions/julia-buildpkg@v1 | |
- uses: julia-actions/julia-docdeploy@v1 | |
env: | |
GKSwstype: nul # Fix for Plots with GR backend. | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} |