Skip to content

Commit 27dfaa3

Browse files
authored
Update CompatHelper.yml (#8)
1 parent a3b5130 commit 27dfaa3

File tree

1 file changed

+16
-15
lines changed

1 file changed

+16
-15
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
1-
# see the docs at https://github.com/JuliaRegistries/CompatHelper.jl
2-
31
name: CompatHelper
4-
52
on:
63
schedule:
7-
- cron: '00 00 * * *'
4+
- cron: 0 0 * * *
85
workflow_dispatch:
9-
106
jobs:
117
CompatHelper:
12-
runs-on: ${{ matrix.os }}
13-
strategy:
14-
matrix:
15-
julia-version: [1.2.0]
16-
julia-arch: [x86]
17-
os: [ubuntu-latest]
8+
runs-on: ubuntu-latest
189
steps:
19-
- name: Pkg.add("CompatHelper")
20-
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
21-
- name: CompatHelper.main()
10+
- name: "Install CompatHelper"
11+
run: |
12+
import Pkg
13+
name = "CompatHelper"
14+
uuid = "aa819f21-2bde-4658-8897-bab36330d9b7"
15+
version = "1"
16+
Pkg.add(; name, uuid, version)
17+
shell: julia --color=yes {0}
18+
- name: "Run CompatHelper"
19+
run: |
20+
import CompatHelper
21+
CompatHelper.main(; subdirs = ["", "docs"])
22+
shell: julia --color=yes {0}
2223
env:
2324
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24-
run: julia -e 'using CompatHelper; CompatHelper.main()'
25+
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}

0 commit comments

Comments
 (0)