Fix minor bug in error message #387 #678
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: Documentation | |
on: | |
push: | |
branches: [master] | |
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(name="StarAlgebras", rev="main"), | |
PackageSpec(name="SymbolicWedderburn", rev="master"), | |
PackageSpec(name="MultivariateBases", rev="master"), | |
PackageSpec(name="MultivariateMoments", rev="master"), | |
PackageSpec(name="PolyJuMP", rev="master"), | |
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 |