Skip to content

Commit

Permalink
Update CompatHelper to run on subdirs
Browse files Browse the repository at this point in the history
  • Loading branch information
christopher-dG committed Jun 23, 2020
1 parent 0e76b00 commit 5521f24
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,15 @@ on:

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: [1.2.0]
julia-arch: [x86]
os: [ubuntu-latest]
runs-on: ubuntu-latest
steps:
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: julia -e 'using CompatHelper; CompatHelper.main()'
run: |
julia -e '
using CompatHelper
dirs = filter(isdir, readdir("tutorials"; join=true))
CompatHelper.main(; subdirs=["", dirs...])'

0 comments on commit 5521f24

Please sign in to comment.