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 cdb6053 commit e6b01cfCopy full SHA for e6b01cf
.github/workflows/CompatHelper.yml
@@ -8,19 +8,15 @@ on:
8
9
jobs:
10
build:
11
- runs-on: ${{ matrix.os }}
12
- strategy:
13
- matrix:
14
- julia-version: [1.2.0]
15
- julia-arch: [x86]
16
- os: [ubuntu-latest]
+ runs-on: ubuntu-latest
17
steps:
18
- - uses: julia-actions/setup-julia@latest
19
- with:
20
- version: ${{ matrix.julia-version }}
21
- name: Pkg.add("CompatHelper")
22
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
23
- name: CompatHelper.main()
24
env:
25
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26
- run: julia -e 'using CompatHelper; CompatHelper.main()'
+ run: |
+ julia -e '
+ using CompatHelper
+ dirs = filter(isdir, readdir("tutorials"; join=true))
+ CompatHelper.main(; subdirs=["", dirs...])'
0 commit comments