Skip to content

Commit e6b01cf

Browse files
Update CompatHelper to run on subdirs
1 parent cdb6053 commit e6b01cf

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,15 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: ${{ matrix.os }}
12-
strategy:
13-
matrix:
14-
julia-version: [1.2.0]
15-
julia-arch: [x86]
16-
os: [ubuntu-latest]
11+
runs-on: ubuntu-latest
1712
steps:
18-
- uses: julia-actions/setup-julia@latest
19-
with:
20-
version: ${{ matrix.julia-version }}
2113
- name: Pkg.add("CompatHelper")
2214
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
2315
- name: CompatHelper.main()
2416
env:
2517
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26-
run: julia -e 'using CompatHelper; CompatHelper.main()'
18+
run: |
19+
julia -e '
20+
using CompatHelper
21+
dirs = filter(isdir, readdir("tutorials"; join=true))
22+
CompatHelper.main(; subdirs=["", dirs...])'

0 commit comments

Comments
 (0)