File tree Expand file tree Collapse file tree 2 files changed +47
-0
lines changed Expand file tree Collapse file tree 2 files changed +47
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ pull_request :
4
+ push :
5
+ branches :
6
+ - master
7
+ tags : ' *'
8
+ jobs :
9
+ test :
10
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
11
+ runs-on : ${{ matrix.os }}
12
+ strategy :
13
+ fail-fast : false
14
+ matrix :
15
+ version :
16
+ - ' 1.4'
17
+ - ' 1'
18
+ # - 'nightly'
19
+ os :
20
+ - ubuntu-latest
21
+ - macOS-latest
22
+ - windows-latest
23
+ arch :
24
+ - x64
25
+ steps :
26
+ - uses : actions/checkout@v2
27
+ - uses : julia-actions/setup-julia@v1
28
+ with :
29
+ version : ${{ matrix.version }}
30
+ arch : ${{ matrix.arch }}
31
+ - uses : actions/cache@v1
32
+ env :
33
+ cache-name : cache-artifacts
34
+ with :
35
+ path : ~/.julia/artifacts
36
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
37
+ restore-keys : |
38
+ ${{ runner.os }}-test-${{ env.cache-name }}-
39
+ ${{ runner.os }}-test-
40
+ ${{ runner.os }}-
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
Original file line number Diff line number Diff line change 1
1
# The PythonPlot module for Julia
2
+ [ ![ CI] ( https://github.com/stevengj/PythonPlot.jl/workflows/CI/badge.svg )] ( https://github.com/stevengj/PythonPlot.jl/actions?query=workflow%3ACI )
2
3
3
4
This module provides a Julia interface to the
4
5
[ Matplotlib] ( http://matplotlib.org/ ) plotting library from Python, and
You can’t perform that action at this time.
0 commit comments