small bug fix with gpu and typos (#94) #261
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: | |
push: | |
branches: | |
- master | |
tags: '*' | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: '1.10' | |
- name: Build and deploy | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
julia --project -e ' | |
println("--- :julia: Instantiating project") | |
using Pkg | |
Pkg.instantiate() | |
Pkg.activate("docs") | |
Pkg.instantiate() | |
push!(LOAD_PATH, @__DIR__) | |
println("+++ :julia: Building documentation") | |
include("docs/make.jl")' |