File tree Expand file tree Collapse file tree 2 files changed +5
-15
lines changed Expand file tree Collapse file tree 2 files changed +5
-15
lines changed Original file line number Diff line number Diff line change 53
53
${{ runner.os }}-${{ matrix.arch }}-
54
54
${{ runner.os }}-
55
55
- uses : julia-actions/julia-buildpkg@latest
56
- - run : |
57
- git config --global user.name Tester
58
- git config --global user.email [email protected]
59
56
- uses : julia-actions/julia-runtest@latest
60
57
- uses : julia-actions/julia-processcoverage@v1
61
58
- uses : codecov/codecov-action@v1
66
63
name : Notify Slack Failure
67
64
needs : test
68
65
runs-on : ubuntu-latest
69
- if : github.event == 'schedule'
66
+ if : always() && github.event_name == 'schedule'
70
67
steps :
71
68
- uses : technote-space/workflow-conclusion-action@v2
72
69
- uses : voxmedia/github-action-slack-notify-build@v1
@@ -86,16 +83,12 @@ jobs:
86
83
- uses : julia-actions/setup-julia@v1
87
84
with :
88
85
version : ' 1'
89
- - run : |
90
- git config --global user.name name
91
- git config --global user.email email
92
- git config --global github.user username
93
86
- run : |
94
87
julia --project=docs -e '
95
- using Pkg;
96
- Pkg.develop(PackageSpec(path=pwd()));
97
- Pkg.instantiate();
98
- include("docs/make.jl"); '
88
+ using Pkg
89
+ Pkg.develop(PackageSpec(path=pwd()))
90
+ Pkg.instantiate()
91
+ include("docs/make.jl")'
99
92
env:
100
93
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
101
94
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
Original file line number Diff line number Diff line change 22
22
restore-keys : |
23
23
${{ env.cache-name }}-
24
24
- uses : julia-actions/julia-buildpkg@latest
25
- - run : |
26
- git config --global user.name Tester
27
- git config --global user.email [email protected]
28
25
- uses : julia-actions/julia-runtest@latest
29
26
- uses : julia-actions/julia-processcoverage@v1
30
27
- uses : codecov/codecov-action@v1
You can’t perform that action at this time.
0 commit comments