Skip to content

Commit

Permalink
Spring cleanup (#134)
Browse files Browse the repository at this point in the history
* Fix header in docs

* Update CI

* Reunite CI

* Remove noise

* No noise

* Cleanup benchmarks

* Fix

* Fix docs build
  • Loading branch information
gdalle authored Mar 20, 2024
1 parent 1da0257 commit 2e377d5
Show file tree
Hide file tree
Showing 13 changed files with 200 additions and 2,600 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
arch: [x64]
allow_failure: [false]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
Expand All @@ -39,20 +39,20 @@ jobs:
fail_ci_if_error: true
docs:
name: Documentation
permissions:
contents: write
statuses: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: '1'
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-docdeploy@v1
- uses: julia-actions/cache@v1
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
- run: |
julia --project=docs -e '
using Documenter: DocMeta, doctest
using ImplicitDifferentiation
DocMeta.setdocmeta!(ImplicitDifferentiation, :DocTestSetup, :(using ImplicitDifferentiation); recursive=true)
doctest(ImplicitDifferentiation)'
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
run: julia --project=docs/ docs/make.jl
Loading

0 comments on commit 2e377d5

Please sign in to comment.