File tree Expand file tree Collapse file tree 5 files changed +72
-65
lines changed Expand file tree Collapse file tree 5 files changed +72
-65
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ - push
4
+ - pull_request
5
+ jobs :
6
+ test :
7
+ if : " !contains(github.event.head_commit.message, '[skip ci]')"
8
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
9
+ runs-on : ${{ matrix.os }}
10
+ strategy :
11
+ fail-fast : false
12
+ matrix :
13
+ version :
14
+ - ' 1.2'
15
+ - ' nightly'
16
+ os :
17
+ - ubuntu-latest
18
+ - macOS-latest
19
+ - windows-latest
20
+ arch :
21
+ - x64
22
+ steps :
23
+ - uses : actions/checkout@v2
24
+ - uses : julia-actions/setup-julia@latest
25
+ with :
26
+ version : ${{ matrix.version }}
27
+ arch : ${{ matrix.arch }}
28
+ - uses : julia-actions/julia-buildpkg@latest
29
+ - uses : julia-actions/julia-runtest@latest
30
+ - uses : julia-actions/julia-uploadcodecov@latest
31
+ env :
32
+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
33
+
34
+
35
+ Skip :
36
+ if : " contains(github.event.head_commit.message, '[skip ci]')"
37
+ runs-on : ubuntu-latest
38
+ steps :
39
+ - name : Skip CI 🚫
40
+ run : echo skip ci
Original file line number Diff line number Diff line change
1
+ name : Documentation
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - ' master'
7
+ - ' release-'
8
+ tags : ' *'
9
+ pull_request :
10
+
11
+ jobs :
12
+ build :
13
+ runs-on : ${{ matrix.os }}
14
+ strategy :
15
+ matrix :
16
+ julia-version : [1.3.1]
17
+ julia-arch : [x86]
18
+ os : [ubuntu-latest]
19
+ steps :
20
+ - uses : actions/checkout@v2
21
+ - uses : julia-actions/setup-julia@latest
22
+ with :
23
+ version : ${{ matrix.julia-version }}
24
+ - name : Install dependencies
25
+ run : julia --project=docs -e 'using Pkg; Pkg.instantiate()'
26
+ - name : Build and deploy
27
+ env :
28
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
29
+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }}
30
+ run : julia --project=docs --color=yes docs/make.jl
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ API for Matlab's language core functions
3
3
4
4
[ ![ Dev Doc] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://juliamatlab.github.io/MatLang/dev )
5
5
[ ![ Project Status: Active – The project has reached a stable, usable state and is being actively developed.] ( https://www.repostatus.org/badges/latest/active.svg )] ( https://www.repostatus.org/#active )
6
- [ ![ Build Status] ( https://travis-ci .com/juliamatlab /MatLang.svg?branch=master )] ( https://travis-ci.com/juliamatlab/MatLang )
7
- [ ![ Build status ] ( https://ci.appveyor.com/api/projects/status/vempmfhwcyma2omm? svg=true )] ( https://ci.appveyor.com/project /aminya/matlang )
6
+ ![ Build Status (Github Actions) ] ( https://github .com/aminya /MatLang/workflows/CI/badge.svg )
7
+ [ ![ Test Coverage ] ( https://codecov.io/gh/aminya/MatLang/branch/master/graph/badge. svg )] ( https://codecov.io/gh /aminya/MatLang )
8
8
9
9
# Documentation
10
10
[ ![ Dev Doc] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://juliamatlab.github.io/MatLang/dev )
You can’t perform that action at this time.
0 commit comments