File tree Expand file tree Collapse file tree 1 file changed +12
-24
lines changed Expand file tree Collapse file tree 1 file changed +12
-24
lines changed Original file line number Diff line number Diff line change 1
1
name : CI
2
2
on :
3
- - push
3
+ pull_request :
4
+ branches :
5
+ - main
6
+ push :
7
+ branches :
8
+ - main
4
9
jobs :
5
10
test :
6
- name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
7
- runs-on : ${{ matrix.os }}
11
+ runs-on : ubuntu-latest
8
12
strategy :
9
13
matrix :
14
+ group :
15
+ - All
10
16
version :
11
17
- ' 1'
12
18
- ' 1.6'
13
- os :
14
- - ubuntu-latest
15
- arch :
16
- - x64
17
- group :
18
- - Core
19
19
steps :
20
20
- uses : actions/checkout@v2
21
21
- uses : julia-actions/setup-julia@v1
22
22
with :
23
23
version : ${{ matrix.version }}
24
- arch : ${{ matrix.arch }}
25
24
- uses : actions/cache@v1
26
25
env :
27
26
cache-name : cache-artifacts
38
37
- uses : codecov/codecov-action@v1
39
38
with :
40
39
file : lcov.info
41
- docs :
42
- name : Documentation
43
- runs-on : ubuntu-latest
44
- steps :
45
- - uses : actions/checkout@v2
46
- - uses : julia-actions/setup-julia@latest
40
+ - uses : coverallsapp/github-action@master
47
41
with :
48
- version : ' 1'
49
- - name : Install dependencies
50
- run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
51
- - name : Build and deploy
52
- env :
53
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
54
- DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
55
- run : julia --project=docs/ docs/make.jl
42
+ github-token : ${{ secrets.GITHUB_TOKEN }}
43
+ path-to-lcov : ./lcov.info
You can’t perform that action at this time.
0 commit comments