Skip to content

Use new GitHub actions #41

Use new GitHub actions

Use new GitHub actions #41

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
tags: '*'
pull_request:
branches:
- main
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
permissions:
contents: write
pull-requests: read
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Build Documenter.jl docs
uses: TuringLang/DocsNav/DocsDocumenter@v2