File tree Expand file tree Collapse file tree 1 file changed +12
-31
lines changed Expand file tree Collapse file tree 1 file changed +12
-31
lines changed Original file line number Diff line number Diff line change 1
- name : CI
1
+ name : CompatHelper
2
2
on :
3
- - push
4
- - pull_request
3
+ schedule :
4
+ - cron : 0 0 * * *
5
+ workflow_dispatch :
5
6
jobs :
6
- test :
7
- name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
8
- runs-on : ${{ matrix.os }}
9
- strategy :
10
- fail-fast : false
11
- matrix :
12
- version :
13
- - ' 1'
14
- os :
15
- - ubuntu-latest
16
- arch :
17
- - x64
7
+ CompatHelper :
8
+ runs-on : ubuntu-latest
18
9
steps :
19
- - uses : actions/checkout@v2
20
- - uses : julia-actions/setup-julia@v1
21
- with :
22
- version : ${{ matrix.version }}
23
- arch : ${{ matrix.arch }}
24
- - uses : actions/cache@v1
10
+ - name : Pkg.add("CompatHelper")
11
+ run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
12
+ - name : CompatHelper.main()
25
13
env :
26
- cache-name : cache-artifacts
27
- with :
28
- path : ~/.julia/artifacts
29
- key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
30
- restore-keys : |
31
- ${{ runner.os }}-test-${{ env.cache-name }}-
32
- ${{ runner.os }}-test-
33
- ${{ runner.os }}-
34
- - uses : julia-actions/julia-buildpkg@v1
35
- - uses : julia-actions/julia-runtest@v1
14
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
15
+ COMPATHELPER_PRIV : ${{ secrets.DOCUMENTER_KEY }}
16
+ run : julia -e 'using CompatHelper; CompatHelper.main()'
You can’t perform that action at this time.
0 commit comments