Skip to content

Commit b4dbba0

Browse files
committed
Minor fixes to the CI/CD pipeline. Test on Julia 1.6 instead of nightly (continue testing on nightly only for Linux).
1 parent b50951d commit b4dbba0

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/CI.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,20 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
version:
13-
- '1'
13+
- '1' # Latest release
14+
- '1.6'
1415
- 'nightly'
1516
os:
1617
- ubuntu-latest
1718
- macOS-latest
1819
- windows-latest
1920
arch:
2021
- x64
22+
exclude:
23+
- os: macOS-latest
24+
version: 'nightly'
25+
- os: windows-latest
26+
version: 'nightly'
2127
steps:
2228
- uses: actions/checkout@v2
2329
- uses: julia-actions/setup-julia@v1
@@ -67,4 +73,3 @@ jobs:
6773
- run: julia --project=docs docs/make.jl
6874
env:
6975
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
70-
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

.github/workflows/CompatHelper.yml

-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,4 @@ jobs:
1212
- name: CompatHelper.main()
1313
env:
1414
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15-
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
1615
run: julia -e 'using CompatHelper; CompatHelper.main()'

.github/workflows/TagBot.yml

-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,3 @@ jobs:
1212
- uses: JuliaRegistries/TagBot@v1
1313
with:
1414
token: ${{ secrets.GITHUB_TOKEN }}
15-
ssh: ${{ secrets.DOCUMENTER_KEY }}

0 commit comments

Comments
 (0)