From bea975d58c07021bd3544de51a1b421627b5218a Mon Sep 17 00:00:00 2001 From: Clem Cords Date: Thu, 19 Oct 2023 17:39:07 +0200 Subject: [PATCH] added docs job --- .github/workflows/CI.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8f114e2..feaa584 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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 }} @@ -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