Skip to content

Adds back workflows and Dev Container configuration files #12

Adds back workflows and Dev Container configuration files

Adds back workflows and Dev Container configuration files #12

Workflow file for this run

name: Documentation
on:
push:
branches:
- main # update to match your development branch (master, main, dev, trunk, ...)
tags: "*"
pull_request:
jobs:
build:
permissions:
actions: write
contents: write
pull-requests: read
statuses: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: "lts"
- uses: quarto-dev/quarto-actions/setup@v2
- name: Install Jupyter
run: python -m pip install jupyter
# - uses: julia-actions/cache@v2
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop([PackageSpec(url="https://github.com/cadojo/DocumenterQuarto.jl"), PackageSpec(path=pwd())]); Pkg.update(); Pkg.build()'
- name: Build and deploy
env:
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
run: julia --project=docs/ docs/make.jl