Skip to content

add GPU exp! for Grassmann, gesvda! fallback, benchmark cleanup #12

add GPU exp! for Grassmann, gesvda! fallback, benchmark cleanup

add GPU exp! for Grassmann, gesvda! fallback, benchmark cleanup #12

Workflow file for this run

name: Documenter
on:
push:
branches: [main]
tags: [v*]
pull_request:
jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
if: contains( github.event.pull_request.labels.*.name, 'preview docs') || github.ref == 'refs/heads/main' || contains(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@latest
with:
version: "1.12"
- name: Julia Cache
uses: julia-actions/cache@v3
- name: "Documenter rendering"
run: "docs/make.jl"
env:
PYTHON: ""
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
note:
name: "Documentation deployment note."
runs-on: ubuntu-latest
if: "!contains( github.event.pull_request.labels.*.name, 'preview docs')"
steps:
- name: echo instructions
run: echo 'The Documentation is only generated and pushed on a PR if the “preview docs” label is added.'