Skip to content

bump ci

bump ci #106

Workflow file for this run

name: Documentation
on:
workflow_dispatch:
push:
branches: [main]
tags: '*'
paths:
- '.github/workflows/Docs.yml'
- 'src/**'
- 'docs/**'
pull_request:
types: [opened, synchronize, reopened]
paths:
- '.github/workflows/docs.yml'
- 'src/**'
- 'docs/**'
jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: read # Required when using `push_preview=true`
statuses: write
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- name: Configure doc environment
shell: julia --project=docs --color=yes {0}
run: |
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 }}
- name: Run doctests
run: julia --project=docs --color=yes docs/make.jl