Skip to content

Bump CUDA version

Bump CUDA version #300

Workflow file for this run

name: Documentation
on:
push:
branches:
- master
- actions/trigger/docs
tags: '*'
pull_request:
jobs:
Documenter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: 1.6
- name: Install Run.jl
run: julia -e 'using Pkg; pkg"add Run@0.1"'
- name: Install dependencies
run: julia -e 'using Run; Run.prepare_docs()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.SSH_KEY }}
run: julia -e 'using Run; Run.docs()'