Merge pull request #60 from cbernalz/53-repeated-forecasting #55
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: Docs | |
on: | |
push: | |
branches: | |
- master | |
tags: ['*'] | |
pull_request: | |
branches: | |
- master | |
types: [opened, synchronize, reopened] | |
jobs: | |
docs: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: "1.9" | |
- name: Use Julia cache | |
uses: julia-actions/cache@v2 | |
- run: | | |
julia --project=docs -e ' | |
using Pkg | |
Pkg.develop(PackageSpec(path=pwd())) | |
Pkg.instantiate()' | |
- run: | | |
julia --project=docs -e ' | |
using Documenter: DocMeta, doctest | |
using UCIWWEIHR | |
DocMeta.setdocmeta!(UCIWWEIHR, :DocTestSetup, :(using UCIWWEIHR); recursive=true) | |
doctest(UCIWWEIHR)' | |
- run: julia --project=docs docs/make.jl | |
env: | |
JULIA_PKG_SERVER: "" | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} |