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 1be7914 commit 409cf15Copy full SHA for 409cf15
1 file changed
.github/workflows/CompatHelper.yml
@@ -0,0 +1,22 @@
1
+name: CompatHelper
2
+
3
+on:
4
+ schedule:
5
+ - cron: '00 00 * * *'
6
+ workflow_dispatch:
7
8
+jobs:
9
+ CompatHelper:
10
+ runs-on: ${{ matrix.os }}
11
+ strategy:
12
+ matrix:
13
+ julia-version: [1.2.0]
14
+ julia-arch: [x86]
15
+ os: [ubuntu-latest]
16
+ steps:
17
+ - name: Pkg.add("CompatHelper")
18
+ run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
19
+ - name: CompatHelper.main()
20
+ env:
21
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22
+ run: julia -e 'using CompatHelper; CompatHelper.main()'
0 commit comments