Skip to content

Commit

Permalink
CI: add document building dry-run on PR
Browse files Browse the repository at this point in the history
Signed-off-by: Erik Buer <buer94@gmail.com>
  • Loading branch information
ErikBuer committed Dec 29, 2023
1 parent 2bf8150 commit 314256a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/BuildDocDryRun.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: DocumentationDryRun

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: '1.6'
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
run: julia --project=docs/ docs/make.jl

0 comments on commit 314256a

Please sign in to comment.