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 4c63051 commit bf95be4Copy full SHA for bf95be4
.github/workflows/CompatHelper.yml
@@ -0,0 +1,25 @@
1
+name: CompatHelper
2
+
3
+on:
4
+ schedule:
5
+ - cron: '00 * * * *'
6
7
+jobs:
8
+ build:
9
+ runs-on: ${{ matrix.os }}
10
+ strategy:
11
+ matrix:
12
+ julia-version: [1.2.0]
13
+ julia-arch: [x86]
14
+ os: [ubuntu-latest]
15
+ steps:
16
+ - uses: julia-actions/setup-julia@latest
17
+ with:
18
+ version: ${{ matrix.julia-version }}
19
+ - name: Install dependencies
20
+ run: julia -e 'using Pkg; Pkg.add(Pkg.PackageSpec(name = "CompatHelper", url = "https://github.com/bcbi/CompatHelper.jl.git"))'
21
+ - name: CompatHelper.main
22
+ env:
23
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24
+ JULIA_DEBUG: CompatHelper
25
+ run: julia -e 'using CompatHelper; CompatHelper.main()'
0 commit comments