File tree Expand file tree Collapse file tree 4 files changed +47
-57
lines changed Expand file tree Collapse file tree 4 files changed +47
-57
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ pull_request :
4
+ branches :
5
+ - master
6
+ push :
7
+ branches :
8
+ - master
9
+ tags : ' *'
10
+ jobs :
11
+ test :
12
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
13
+ runs-on : ${{ matrix.os }}
14
+ strategy :
15
+ fail-fast : false
16
+ matrix :
17
+ version :
18
+ - ' 1.0'
19
+ - ' 1'
20
+ - ' nightly'
21
+ os :
22
+ - ubuntu-latest
23
+ arch :
24
+ - x64
25
+ include :
26
+ - version : ' 1'
27
+ os : ubuntu-latest
28
+ arch : x86
29
+ - version : ' 1'
30
+ os : windows-latest
31
+ arch : x64
32
+ - version : ' 1'
33
+ os : macos-latest
34
+ arch : x64
35
+ steps :
36
+ - uses : actions/checkout@v2
37
+ - uses : julia-actions/setup-julia@v1
38
+ with :
39
+ version : ${{ matrix.version }}
40
+ arch : ${{ matrix.arch }}
41
+ - uses : julia-actions/julia-buildpkg@v1
42
+ - uses : julia-actions/julia-runtest@v1
43
+ - uses : julia-actions/julia-processcoverage@v1
44
+ - uses : codecov/codecov-action@v1
45
+ with :
46
+ file : lcov.info
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
3
3
This package provides for parsing and printing JSON in pure Julia.
4
4
5
- [ ![ Build Status] ( https://travis-ci.org/JuliaIO/JSON.jl.svg )] ( https://travis-ci.org/JuliaIO/JSON.jl )
6
- [ ![ Build status] ( https://ci.appveyor.com/api/projects/status/2sfomjwl29k6y6oy )] ( https://ci.appveyor.com/project/staticfloat/json-jl )
5
+ [ ![ Build Status] ( https://github.com/JuliaIO/JSON.jl/workflows/CI/badge.svg )] ( https://github.com/JuliaIO/JSON.jl/actions/workflows/CI.yml?query=branch%3Amaster )
7
6
[ ![ codecov.io] ( http://codecov.io/github/JuliaIO/JSON.jl/coverage.svg?branch=master )] ( http://codecov.io/github/JuliaIO/JSON.jl?branch=master )
8
7
9
8
## Installation
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments