Skip to content

Commit

Permalink
Played around with spaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
benedict-96 committed Dec 4, 2023
1 parent 41860f1 commit 98f0688
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions .github/workflows/Documenter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,33 +11,33 @@ jobs:
build:
name: Documentation
runs-on: ubuntu-latest
steps:
uses: actions/checkout@v3
uses: julia-actions/setup-julia@latest
name: Install dependencies
run: |
julia --project=docs -e '
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
Pkg.build()
Pkg.precompile()'
sudo apt-get install imagemagick
sudo apt-get install poppler-utils
sudo apt-get install texlive-xetex
sudo apt-get install texlive-science
name: Generate tikz pictures
run: |
make all -C src/tikz
name: Run doctests
run: |
julia --project=docs -e '
using Documenter: doctest
using GeometricMachineLearning
doctest(GeometricMachineLearning)'
name: Build and deploy Documentation
run: julia --project make.jl
working-directory: docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
steps:
uses: actions/checkout@v3
uses: julia-actions/setup-julia@latest
name: Install dependencies
run: |
julia --project=docs/ -e '
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
Pkg.build()
Pkg.precompile()'
sudo apt-get install imagemagick
sudo apt-get install poppler-utils
sudo apt-get install texlive-xetex
sudo apt-get install texlive-science
name: Generate tikz pictures
run: |
make all -C src/tikz
name: Run doctests
run: |
julia --project=docs -e '
using Documenter: doctest
using GeometricMachineLearning
doctest(GeometricMachineLearning)'
name: Build and deploy Documentation
run: julia --project make.jl
working-directory: docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

0 comments on commit 98f0688

Please sign in to comment.