Skip to content

Change documentation build workflow #1

Change documentation build workflow

Change documentation build workflow #1

Workflow file for this run

# https://documenter.juliadocs.org/stable/man/hosting/#GitHub-Actions
name: Documentation
docs:

Check failure on line 4 in .github/workflows/documentation.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/documentation.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
name: Documentation
runs-on: ubuntu-latest
permissions:
contents: write
statuses: write
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: '1'
- name: Configure doc environment
run: |
julia --project=docs/ -e '
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()'
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-docdeploy@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: |
julia --project=docs -e '
using Documenter: DocMeta, doctest
using Antiq
DocMeta.setdocmeta!(Antiq, :DocTestSetup, :(using Antiq); recursive=true)
doctest(Antiq)'