Skip to content

Merge pull request #24 from slayoo/patch-1 fix CI badge URLs #37

Merge pull request #24 from slayoo/patch-1 fix CI badge URLs

Merge pull request #24 from slayoo/patch-1 fix CI badge URLs #37

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
jobs:
deploy:
permissions:
actions: write
contents: write
pull-requests: read
statuses: write
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Julia
uses: julia-actions/setup-julia@v1
with:
version: '1.9'
- name: Install package
run: julia --project=docs -e 'using Pkg; Pkg.develop(path="."); Pkg.instantiate()'
- name: Build and deploy documentation
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
run: julia --project=docs docs/make.jl