We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46d1e49 commit 6ff5879Copy full SHA for 6ff5879
.github/workflows/CompatHelper.yml
@@ -9,6 +9,7 @@ jobs:
9
CompatHelper:
10
runs-on: ubuntu-latest
11
steps:
12
+ - uses: actions/checkout@v2
13
- name: "Install CompatHelper"
14
run: |
15
import Pkg
@@ -21,11 +22,12 @@ jobs:
21
22
23
import CompatHelper
24
subdirs = ["", "test", "docs"]
- for f in readdir(joinpath(@__DIR__, "examples"); join=true)
25
+ for f in readdir("examples"; join=true)
26
if isdir(f)
27
push!(subdirs, joinpath("examples", basename(f)))
28
end
29
30
+ @info "CompatHelper directories" subdirs
31
CompatHelper.main(; subdirs=subdirs)
32
shell: julia --color=yes {0}
33
env:
0 commit comments