Skip to content

CompatHelper: bump compat for Manopt to 0.5, (keep existing compat) (… #64

CompatHelper: bump compat for Manopt to 0.5, (keep existing compat) (…

CompatHelper: bump compat for Manopt to 0.5, (keep existing compat) (… #64

Workflow file for this run

name: Documentation
on:
push:
branches: [main]
tags: '*'
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
env:
# Fix for Plots with GR backend, see https://github.com/JuliaPolyhedra/Polyhedra.jl/pull/265
GKSwstype: nul
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
with:
# Build documentation on the latest Julia 1.x
version: '1'
- name: Install dependencies
shell: julia --project=docs/ {0}
run: |
using Pkg
Pkg.add([
PackageSpec(path=pwd()),
])
Pkg.instantiate()
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
run: julia --project=docs/ docs/make.jl