Skip to content

Refactor interface of Gol, Lazar, Belta #705

Refactor interface of Gol, Lazar, Belta

Refactor interface of Gol, Lazar, Belta #705

Workflow file for this run

name: Documentation
on:
push:
branches: [master]
tags: '*'
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install LaTeX
run: sudo apt-get update && sudo apt-get -y install ghostscript texlive texlive-latex-extra texlive-fonts-recommended cm-super dvipng
- 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(url="https://github.com/blegat/IntervalLinearAlgebra.jl", rev="radius"),
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
GKSwstype: "100" # https://discourse.julialang.org/t/generation-of-documentation-fails-qt-qpa-xcb-could-not-connect-to-display/60988
run: julia --project=docs/ docs/make.jl