Fix example in docs, match docs with README, add downgrade check (#31) #79
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: | |
workflow_dispatch: | |
push: | |
branches: [master, main] | |
tags: '*' | |
paths: | |
- '.github/workflows/docs.yml' | |
- 'src/**' | |
- 'docs/**' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: | |
- '.github/workflows/docs.yml' | |
- 'src/**' | |
- 'docs/**' | |
jobs: | |
Documentation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: 1.6 # earliest supported version | |
- uses: julia-actions/cache@v1 # https://github.com/julia-actions/cache | |
- uses: julia-actions/julia-docdeploy@releases/v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token | |
PYTHON: "" |