File tree Expand file tree Collapse file tree 2 files changed +50
-2
lines changed Expand file tree Collapse file tree 2 files changed +50
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ push :
4
+ branches : [master]
5
+ tags : ["*"]
6
+ pull_request :
7
+ jobs :
8
+ test :
9
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
10
+ runs-on : ${{ matrix.os }}
11
+ strategy :
12
+ fail-fast : false
13
+ matrix :
14
+ version :
15
+ - ' 1.0'
16
+ - ' 1' # automatically expands to the latest stable 1.x release of Julia
17
+ - nightly
18
+ os :
19
+ - ubuntu-latest
20
+ arch :
21
+ - x64
22
+ services :
23
+ rabbitmq :
24
+ image : rabbitmq:3-management
25
+ ports :
26
+ - 5672:5672
27
+ steps :
28
+ - uses : actions/checkout@v2
29
+ - uses : julia-actions/setup-julia@v1
30
+ with :
31
+ version : ${{ matrix.version }}
32
+ arch : ${{ matrix.arch }}
33
+ - uses : actions/cache@v1
34
+ env :
35
+ cache-name : cache-artifacts
36
+ with :
37
+ path : ~/.julia/artifacts
38
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
39
+ restore-keys : |
40
+ ${{ runner.os }}-test-${{ env.cache-name }}-
41
+ ${{ runner.os }}-test-
42
+ ${{ runner.os }}-
43
+ - uses : julia-actions/julia-buildpkg@v1
44
+ - uses : julia-actions/julia-runtest@v1
45
+ - uses : julia-actions/julia-processcoverage@v1
46
+ - uses : codecov/codecov-action@v1
47
+ with :
48
+ file : lcov.info
Original file line number Diff line number Diff line change 1
1
# AMQPClient
2
2
3
- [ ![ Build Status] ( https://travis-ci.org /JuliaComputing/AMQPClient.jl.svg?branch=master )] ( https://travis-ci.org /JuliaComputing/AMQPClient.jl )
4
- [ ![ Coverage Status ] ( https ://coveralls .io/repos /JuliaComputing/AMQPClient.jl/badge .svg?branch=master&service=github )] ( https ://coveralls .io/github/JuliaComputing/AMQPClient.jl?branch=master)
3
+ [ ![ Build Status] ( https://github.com /JuliaComputing/AMQPClient.jl/workflows/CI/badge .svg )] ( https://github.com /JuliaComputing/AMQPClient.jl/actions?query=workflow%3ACI+branch%3Amaster )
4
+ [ ![ codecov.io ] ( http ://codecov .io/github /JuliaComputing/AMQPClient.jl/coverage .svg?branch=master)] ( http ://codecov .io/github/JuliaComputing/AMQPClient.jl?branch=master)
5
5
6
6
A Julia [ AMQP (Advanced Message Queuing Protocol)] ( http://www.amqp.org/ ) Client.
7
7
You can’t perform that action at this time.
0 commit comments