Skip to content

Some cleanup, refactoring, and updating for compatibility with the la… #62

Some cleanup, refactoring, and updating for compatibility with the la…

Some cleanup, refactoring, and updating for compatibility with the la… #62

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
tags: '*'
pull_request:
jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: '1'
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-docdeploy@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
- run: |
julia --project=docs -e '
using Documenter: DocMeta, doctest
using VlasovMethods
DocMeta.setdocmeta!(VlasovMethods, :DocTestSetup, :(using VlasovMethods); recursive=true)
doctest(VlasovMethods)'