File tree Expand file tree Collapse file tree 3 files changed +24
-26
lines changed Expand file tree Collapse file tree 3 files changed +24
-26
lines changed Original file line number Diff line number Diff line change
1
+ name : Documentation
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ tags : ' *'
8
+ pull_request :
9
+
10
+ jobs :
11
+ build :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+ - uses : julia-actions/setup-julia@latest
16
+ with :
17
+ version : ' 1.5'
18
+ - name : Install dependencies
19
+ run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
20
+ - name : Build and deploy
21
+ env :
22
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
23
+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
24
+ run : julia --project=docs/ docs/make.jl
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ license] ( https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000 )] ( https://github.com/JuliaMath/IterativeSolvers.jl/blob/master/LICENSE )
4
4
[ ![ Build Status] ( https://github.com/JuliaMath/IterativeSolvers.jl/workflows/CI/badge.svg )] ( https://github.com/JuliaMath/IterativeSolvers.jl/actions )
5
- [ ![ Build Status on Linux] ( https://travis-ci.org/JuliaMath/IterativeSolvers.jl.svg?branch=master )] ( https://travis-ci.org/JuliaMath/IterativeSolvers.jl )
6
5
[ ![ Codecov] ( http://codecov.io/github/JuliaMath/IterativeSolvers.jl/coverage.svg?branch=master )] ( http://codecov.io/github/JuliaMath/IterativeSolvers.jl?branch=master )
7
6
[ ![ Coveralls] ( https://coveralls.io/repos/JuliaMath/IterativeSolvers.jl/badge.svg?branch=master&service=github )] ( https://coveralls.io/github/JuliaMath/IterativeSolvers.jl?branch=master )
8
7
You can’t perform that action at this time.
0 commit comments