@@ -13,26 +13,27 @@ jobs:
1313 julia-arch : [x86]
1414 os : [ubuntu-latest]
1515 steps :
16- - uses : actions/checkout@v1
16+ - uses : actions/checkout@v2
1717 - uses : julia-actions/setup-julia@latest
1818 with :
1919 version : ${{ matrix.julia-version }}
2020 - name : Install dependencies
2121 run : julia --project=@. -e 'using Pkg; Pkg.instantiate();'
2222 - name : Add SnoopCompile and current package
2323 run : julia -e 'using Pkg; Pkg.add(PackageSpec(url = "https://github.com/aminya/SnoopCompile.jl", rev ="packageSnooper")); Pkg.develop(PackageSpec(; path=pwd()));'
24+ # - name: Install Test dependencies
25+ # run: julia -e 'using SnoopCompile; SnoopCompile.addtestdep()'
2426 - name : Generating precompile files
2527 run : julia --project=@. -e 'include("deps/SnoopCompile/snoopCompile.jl")'
2628
2729 # https://github.com/marketplace/actions/create-pull-request
2830 - name : Create Pull Request
29- uses : peter-evans/create-pull-request@v1.9.1
31+ uses : peter-evans/create-pull-request@v2-alpha
3032 env :
3133 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3234 COMMIT_MESSAGE : Update precompile_*.jl file
3335 PULL_REQUEST_TITLE : ' [AUTO] Update precompile_*.jl file'
3436 PULL_REQUEST_LABELS : SnoopCompile
3537 PULL_REQUEST_BRANCH : create-pull-request/SnoopCompile
36- BRANCH_SUFFIX : none
3738 - name : Check output environment variable
3839 run : echo "Pull Request Number - ${{ env.PULL_REQUEST_NUMBER }}"
0 commit comments