Skip to content

Commit

Permalink
added docs job
Browse files Browse the repository at this point in the history
  • Loading branch information
Clemapfel authored Oct 19, 2023
1 parent 3e81e95 commit bea975d
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
name: test
name: CI
on:
push:
pull_request:

defaults:
run:
shell: bash

jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
Expand All @@ -28,3 +30,14 @@ jobs:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
show-versioninfo: true

docs:
name: 'Documentation'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
- name: Install Documenter.jl Latest
run: julia --colors=yes -e "import Pkg; Pkg.add(url=\"https://github.com/JuliaDocs/Documenter.jl\")"
- name: Build Docs
run: julia --color=yes docs/make.jl

0 comments on commit bea975d

Please sign in to comment.