Skip to content

Commit

Permalink
add --color=yes to docs CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cgarling committed Jun 25, 2024
1 parent 1580305 commit fd69d06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@ jobs:
- uses: julia-actions/cache@v2
- name: Instantiate and build docs project
run: |
julia --project=docs -e '
julia --project=docs --color=yes -e '
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()'
env:
PYTHON: ${{ steps.cpython3.outputs.python-path }}
- name: Run doctests
run: |
julia --project=docs -e '
julia --project=docs --color=yes -e '
import Documenter: doctest, DocMeta
import StarFormationHistories
DocMeta.setdocmeta!(StarFormationHistories, :DocTestSetup, :(using StarFormationHistories); recursive=true)
Expand All @@ -92,7 +92,7 @@ jobs:
- name: Install tex dependencies
run: sudo apt-get install dvipng texlive-latex-extra texlive-fonts-recommended cm-super
- name: Make and deploy docs
run: julia --project=docs docs/make.jl
run: julia --project=docs --color=yes docs/make.jl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

0 comments on commit fd69d06

Please sign in to comment.