You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
634 B
23 lines
634 B
name: Documentation |
|
|
|
on: [push, pull_request] |
|
|
|
jobs: |
|
build: |
|
runs-on: ${{ matrix.os }} |
|
strategy: |
|
matrix: |
|
julia-version: [1.2.0] |
|
julia-arch: [x86] |
|
os: [ubuntu-latest] |
|
steps: |
|
- uses: actions/checkout@v1.0.0 |
|
- uses: julia-actions/setup-julia@latest |
|
with: |
|
version: ${{ matrix.julia-version }} |
|
- name: Install dependencies |
|
run: julia --project=docs -e 'using Pkg; Pkg.instantiate(); Pkg.update()' |
|
- name: Build and deploy |
|
env: |
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
|
run: julia --project=docs --color=yes docs/make.jl
|
|
|