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