Skip to content

Commit ac8440e

Browse files
Revert "add docs to CI.yml"
This reverts commit cf3a2ac.
1 parent 955817d commit ac8440e

File tree

1 file changed

+6
-22
lines changed

1 file changed

+6
-22
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
name: CI
22
on:
33
pull_request:
4-
branches:
5-
- main
64
push:
75
branches:
8-
- main
9-
tags: ['*']
6+
- master
7+
tags: '*'
108
jobs:
119
test:
1210
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -15,12 +13,12 @@ jobs:
1513
fail-fast: false
1614
matrix:
1715
version:
18-
- '1' # automatically expands to the latest stable 1.x release of Julia
19-
- 'nightly'
16+
- '1.6.3'
17+
# - 'nightly'
2018
os:
2119
- ubuntu-latest
22-
# - macOS-latest
23-
# - windows-latest
20+
- macOS-latest
21+
- windows-latest
2422
arch:
2523
- x64
2624
steps:
@@ -45,17 +43,3 @@ jobs:
4543
- uses: codecov/codecov-action@v1
4644
with:
4745
file: lcov.info
48-
docs:
49-
name: Documentation
50-
runs-on: ubuntu-latest
51-
steps:
52-
- uses: actions/checkout@v2
53-
- uses: julia-actions/setup-julia@v1
54-
with:
55-
version: '1'
56-
- run:
57-
julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate(); include("docs/make.jl")'
58-
env:
59-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
60-
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
61-
DOCUMENTER_DEBUG: true

0 commit comments

Comments
 (0)