We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b98f42 commit 17d3a0bCopy full SHA for 17d3a0b
1 file changed
.github/workflows/CI.yml
@@ -66,7 +66,16 @@ jobs:
66
- run: |
67
# Instantiate Pkg
68
wget https://raw.githubusercontent.com/JuliaQuantumControl/JuliaQuantumControl/master/scripts/installorg.jl
69
- julia --project=test installorg.jl
+ install -m 600 -D /dev/null ~/.ssh/known_hosts
70
+ ssh-keyscan -H github.com | tee ~/.ssh/known_hosts
71
+ julia --project=test -e 'include("installorg.jl"); installorg(; github="develop")'
72
+ # installing in develop mode enables proper "source" links in subpackage APIs
73
+ - run: |
74
+ # Debug-install Documenter
75
+ julia --project=test -e'using Pkg;Pkg.develop(url="https://github.com/goerz-forks/Documenter.jl.git#debug")'
76
+ cd /home/runner/.julia/dev/Documenter
77
+ git checkout debug
78
+ git status
79
- run: cp test/*.toml docs/ # Prepare DrWatson
80
81
# Run doctests
0 commit comments