Skip to content

Commit

Permalink
Piped a few commands into one.
Browse files Browse the repository at this point in the history
  • Loading branch information
benedict-96 committed Dec 5, 2023
1 parent 02c37b9 commit 1fcf5f2
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/Documenter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,24 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@latest
- 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
- run: |
make all -C docs/src/tikz
- uses: julia-actions/setup-julia@latest
- run: |
julia --project=docs -e '
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
Pkg.build()
Pkg.precompile()'
using Documenter: doctest
using GeometricMachineLearning
doctest(GeometricMachineLearning)'
- run: julia --project docs/make.jl
julia --project docs/make.jl
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-docdeploy@v1
env:
Expand Down

0 comments on commit 1fcf5f2

Please sign in to comment.