Skip to content

Commit 2709e48

Browse files
committed
A few more fixes
1 parent 2725deb commit 2709e48

File tree

2 files changed

+5
-15
lines changed

2 files changed

+5
-15
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ jobs:
5353
${{ runner.os }}-${{ matrix.arch }}-
5454
${{ runner.os }}-
5555
- uses: julia-actions/julia-buildpkg@latest
56-
- run: |
57-
git config --global user.name Tester
58-
git config --global user.email [email protected]
5956
- uses: julia-actions/julia-runtest@latest
6057
- uses: julia-actions/julia-processcoverage@v1
6158
- uses: codecov/codecov-action@v1
@@ -66,7 +63,7 @@ jobs:
6663
name: Notify Slack Failure
6764
needs: test
6865
runs-on: ubuntu-latest
69-
if: github.event == 'schedule'
66+
if: always() && github.event_name == 'schedule'
7067
steps:
7168
- uses: technote-space/workflow-conclusion-action@v2
7269
- uses: voxmedia/github-action-slack-notify-build@v1
@@ -86,16 +83,12 @@ jobs:
8683
- uses: julia-actions/setup-julia@v1
8784
with:
8885
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
9386
- run: |
9487
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")'
9992
env:
10093
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10194
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

.github/workflows/JuliaNightly.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ jobs:
2222
restore-keys: |
2323
${{ env.cache-name }}-
2424
- uses: julia-actions/julia-buildpkg@latest
25-
- run: |
26-
git config --global user.name Tester
27-
git config --global user.email [email protected]
2825
- uses: julia-actions/julia-runtest@latest
2926
- uses: julia-actions/julia-processcoverage@v1
3027
- uses: codecov/codecov-action@v1

0 commit comments

Comments
 (0)