Skip to content

Commit

Permalink
Add Literate check workflow to template
Browse files Browse the repository at this point in the history
  • Loading branch information
mtfishman committed Nov 22, 2024
1 parent 8cf55bf commit b9c3558
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions templates/default/.github/workflows/LiterateCheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Literate check
on:
push:
branches: [main]
tags: [v*]
pull_request:

jobs:
literate:
name: "Literate Check"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: 1
- name: Install Literate and generate docs
run: |
julia -e 'using Pkg; Pkg.add(PackageSpec(name="Literate"))'
julia -e 'using Literate; Literate.markdown("examples/README.jl", "docs/src"; flavor=Literate.DocumenterFlavor(), name="index")'
- name: Check if docs need to be updated
run: |
julia -e '
out = Cmd(`git diff --name-only`) |> read |> String
if out == ""
exit(0)
else
@error "The documentation is outdated, rerun Literate to regenerate them."
write(stdout, out)
out_diff = Cmd(`git diff`) |> read |> String
@error "Diff:"
write(stdout, out_diff)
exit(1)
@error ""
end'

0 comments on commit b9c3558

Please sign in to comment.