Skip to content

Merge pull request #90 from Ezequiel92/update_manifests/single_pr/all… #229

Merge pull request #90 from Ezequiel92/update_manifests/single_pr/all…

Merge pull request #90 from Ezequiel92/update_manifests/single_pr/all… #229

Workflow file for this run

name: Deploy documentation
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- jlenv: 'docs/'
makejl: 'docs/make.jl'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: '1'
- run: |
julia --project=${{ matrix.jlenv }} -e '
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()'
- run: julia --project=${{ matrix.jlenv }} --color=yes ${{ matrix.makejl }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}