Skip to content

2024-07-19 update : updating doc. #9

2024-07-19 update : updating doc.

2024-07-19 update : updating doc. #9

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Julia
uses: julia-actions/setup-julia@v1
with:
julia-version: '1.9'
- name: Install dependencies
run: |
julia -e 'using Pkg; Pkg.instantiate()'
julia -e 'using Pkg; Pkg.add("Documenter")'

Check failure on line 25 in .github/workflows/Documentation.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/Documentation.yml

Invalid workflow file

You have an error in your yaml syntax on line 25
- name: Install dependencies
run: julia --project -e 'using Pkg; Pkg.instantiate()'
- name: Build documentation
run: julia docs/make.jl
- name: Upload documentation
uses: actions/upload-artifact@v2
with:
name: github-pages
path: docs/build
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4