Skip to content

Commit acfadfa

Browse files
authored
Fix test errors and simplify docs (#99)
* Fix Windows test errors (hopefully) * Simplify building docs * Update .gitignore * Fix another test error * Fix another test error
1 parent 93284f0 commit acfadfa

File tree

7 files changed

+14
-395
lines changed

7 files changed

+14
-395
lines changed

.github/workflows/Docs.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,12 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
15-
- uses: julia-actions/setup-julia@latest
15+
- uses: julia-actions/setup-julia@v1
1616
with:
1717
version: '1'
18-
- name: Install dependencies
19-
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
20-
- name: Build and deploy
18+
- uses: julia-actions/julia-buildpkg@v1
19+
- uses: julia-actions/julia-docdeploy@v1
2120
env:
2221
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
2322
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
24-
run: julia --project=docs/ docs/make.jl
23+
JULIA_DEBUG: Documenter # Print `@debug` statements (https://github.com/JuliaDocs/Documenter.jl/issues/955)

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
*.jl.*.cov
33
*.jl.mem
44
deps/deps.jl
5-
/Manifest.toml
5+
Manifest.toml

0 commit comments

Comments
 (0)