Skip to content

Add GTL

Add GTL #1167

Workflow file for this run

name: Documentation
on:
push:
branches:
- master
tags: '*'
paths:
- 'docs/**'
- 'src/**'
- 'lib/**'
pull_request:
paths:
- 'docs/**'
- 'src/**'
- 'lib/**'
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: always.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
docs-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
shell: julia --color=yes --project=docs/ {0}
run: |
using Pkg
Pkg.develop(PackageSpec(path="lib/MPIPreferences"))
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
Pkg.build(;verbose=true)
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: julia --color=yes --project=docs/ docs/make.jl