Skip to content

Update CI/make script #21

Update CI/make script

Update CI/make script #21

Workflow file for this run

name: Build site
permissions:
contents: write
on:
push:
branches:
- main
tags: '*'
pull_request:
jobs:
docs:
name: Documenter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- run: julia --project=. -e 'using Pkg; Pkg.instantiate();'
- run: julia --project=. make.jl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}