Skip to content

Commit

Permalink
resolve docs manifest after adding Legolas dep (#49)
Browse files Browse the repository at this point in the history
Also removes the run Manifest since run more of a developer environment,
that is not used in CI anymore.
  • Loading branch information
visr authored Jan 27, 2023
1 parent 1b9ec20 commit 2267e66
Show file tree
Hide file tree
Showing 7 changed files with 152 additions and 2,750 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
version:
- "1.8"
- "~1.9.0-0"
os:
- ubuntu-latest
- macOS-latest
Expand All @@ -36,6 +36,8 @@ jobs:
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
env:
JULIA_PKG_SERVER: "pkg.julialang.org"
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v2
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
version:
- "1.8" # make sure to keep this in sync with _quarto.yml
- "~1.9.0-0" # make sure to keep this in sync with _quarto.yml
arch:
- x64
steps:
Expand All @@ -22,6 +22,8 @@ jobs:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-buildpkg@v1
env:
JULIA_PKG_SERVER: "pkg.julialang.org"
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
Expand All @@ -36,14 +38,18 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: pip install jupyter
# avoid jupyter-client 8: https://github.com/quarto-dev/quarto-cli/issues/4122
- run: pip install jupyter jupyter-client==7.4.9

- name: Install IJulia
run: julia -e 'using Pkg; Pkg.add("IJulia")'

- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2

- name: Check Quarto install
run: quarto check install

- name: Check Quarto kernels
run: quarto check jupyter

Expand Down
Loading

0 comments on commit 2267e66

Please sign in to comment.