Skip to content

Commit 7396ae0

Browse files
authored
Merge pull request #145 from aminya/massinstallaction/set-up-CompatHelper
MassInstallAction: Install the CompatHelper workflow on this repository
2 parents 361741b + 16c68ab commit 7396ae0

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,21 @@ name: CompatHelper
22

33
on:
44
schedule:
5-
- cron: '0 1 * * *'
6-
issues:
7-
types: [opened, reopened]
5+
- cron: '00 00 * * *'
6+
workflow_dispatch:
87

98
jobs:
10-
build:
9+
CompatHelper:
1110
runs-on: ${{ matrix.os }}
1211
strategy:
1312
matrix:
14-
julia-version: [1.3.1]
15-
julia-arch: [x64]
13+
julia-version: [1.2.0]
14+
julia-arch: [x86]
1615
os: [ubuntu-latest]
1716
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
17+
- name: Pkg.add("CompatHelper")
18+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
19+
- name: CompatHelper.main()
2420
env:
2521
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26-
JULIA_DEBUG: CompatHelper
2722
run: julia -e 'using CompatHelper; CompatHelper.main()'

0 commit comments

Comments
 (0)