File tree Expand file tree Collapse file tree 8 files changed +68
-112
lines changed Expand file tree Collapse file tree 8 files changed +68
-112
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : daily
2
+ on :
3
+ schedule :
4
+ - cron : ' 00 00 * * *'
5
+ jobs :
6
+ CompatHelper :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : julia-actions/setup-julia@latest
10
+ with :
11
+ version : 1.3
12
+ - run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
13
+ - run : julia -e 'using CompatHelper; CompatHelper.main()'
14
+ env :
15
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ name : permanent
2
+ on :
3
+ push :
4
+ branches :
5
+ - ' master'
6
+ jobs :
7
+ document :
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - uses : actions/checkout@v2
11
+ - uses : julia-actions/setup-julia@latest
12
+ with :
13
+ version : ' 1.3'
14
+ - uses : julia-actions/julia-docdeploy@releases/v1
15
+ env :
16
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
17
+ - uses : JuliaRegistries/TagBot@v1
18
+ with :
19
+ token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ name : test
2
+ on :
3
+ - push
4
+ - pull_request
5
+ jobs :
6
+ test :
7
+ name : ${{ matrix.version }}
8
+ runs-on : ubuntu-latest
9
+ strategy :
10
+ matrix :
11
+ version :
12
+ - ' 1.0'
13
+ - ' 1.4'
14
+ - ' nightly'
15
+ steps :
16
+ - uses : actions/checkout@v2
17
+ - uses : julia-actions/setup-julia@latest
18
+ with :
19
+ version : ${{ matrix.version }}
20
+ - uses : julia-actions/julia-buildpkg@latest
21
+ - uses : julia-actions/julia-runtest@latest
22
+ - uses : julia-actions/julia-processcoverage@v1
23
+ env :
24
+ DISABLE_AMEND_COVERAGE_FROM_SRC : yes
25
+ - uses : codecov/codecov-action@v1
26
+ with :
27
+ file : ./lcov.info
28
+ - uses : domluna/JuliaFormatter-action@master
29
+ with :
30
+ args : -v .
31
+ continue-on-error : true
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- # MetaGraphs
1
+ # MetaGraphsNext
2
2
3
- [ ![ Build Status] ( https://travis-ci.org/JuliaGraphs/MetaGraphs.jl.svg?branch=master )] ( https://travis-ci.org/JuliaGraphs/MetaGraphs.jl )
4
- [ ![ codecov.io] ( http://codecov.io/github/JuliaGraphs/MetaGraphs.jl/coverage.svg?branch=master )] ( http://codecov.io/github/JuliaGraphs/MetaGraphs.jl?branch=master )
5
- [ ![ ] ( https://img.shields.io/badge/docs-latest-blue.svg )] ( https://juliagraphs.github.io/MetaGraphs.jl/latest )
6
-
7
- [ LightGraphs.jl] ( https://github.com/JuliaGraphs/LightGraphs.jl ) graphs with arbitrary metadata.
8
-
9
- ## Documentation
10
- Full documentation is available at [ GitHub Pages] ( https://juliagraphs.github.io/MetaGraphs.jl/latest ) .
11
- Documentation for methods is also available via the Julia REPL help system.
12
-
13
- ## Compatibility
14
- We have recently made a large, breaking change to ` MetaGraphs ` . The metadata at
15
- vertices and edges is now type stable (although you can still attach
16
- type-unstable data by setting ` AtEdge ` or ` AtVertex ` to ` Any ` ).
3
+ [ ![ Latest] ( https://img.shields.io/badge/docs-latest-blue.svg )] ( https://bramtayl.github.io/MetaGraphsNext.jl/latest )
4
+ [ ![ CodeCov] ( https://codecov.io/gh/bramtayl/MetaGraphsNext.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/bramtayl/MetaGraphsNext.jl )
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments