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