File tree Expand file tree Collapse file tree 10 files changed +100
-48
lines changed Expand file tree Collapse file tree 10 files changed +100
-48
lines changed Original file line number Diff line number Diff line change 1+ name : CompatHelper
2+
3+ on :
4+ schedule :
5+ - cron : 0 * * * *
6+
7+ jobs :
8+ CompatHelper :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : Pkg.add("CompatHelper")
12+ run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
13+ - name : CompatHelper.main()
14+ env :
15+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
16+ run : julia -e 'using CompatHelper; CompatHelper.main()'
Original file line number Diff line number Diff line change 1+ name : TagBot
2+ on :
3+ schedule :
4+ - cron : 30 * * * *
5+ workflow_dispatch :
6+ jobs :
7+ TagBot :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : JuliaRegistries/TagBot@v1
11+ with :
12+ token : ${{ secrets.GITHUB_TOKEN }}
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'
19+ os :
20+ - ubuntu-latest
21+ arch :
22+ - x64
23+ steps :
24+ - uses : actions/checkout@v2
25+ - uses : julia-actions/setup-julia@v1
26+ with :
27+ version : ${{ matrix.version }}
28+ arch : ${{ matrix.arch }}
29+ - uses : actions/cache@v1
30+ env :
31+ cache-name : cache-artifacts
32+ with :
33+ path : ~/.julia/artifacts
34+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
35+ restore-keys : |
36+ ${{ runner.os }}-test-${{ env.cache-name }}-
37+ ${{ runner.os }}-test-
38+ ${{ runner.os }}-
39+ - uses : julia-actions/julia-buildpkg@v1
40+ - uses : julia-actions/julia-runtest@v1
41+ - uses : julia-actions/julia-processcoverage@v1
42+ - uses : codecov/codecov-action@v1
43+ with :
44+ file : lcov.info
Original file line number Diff line number Diff line change 1+ .DS_Store
12* .jl.cov
2- * .jl. * .cov
33* .jl.mem
4+ .vscode
5+ docs /build /
6+ docs /site /
7+ benchmark /.results /*
8+ benchmark /.tune.jld
9+ * .cov
10+ Manifest.toml
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name = " SNAPDatasets"
2+ uuid = " fc66bc1b-447b-53fc-8f09-bc9cfb0b0c10"
3+ authors = [" JuliaGraphs" ]
4+ version = " 0.2.0"
5+
6+ [deps ]
7+ Graphs = " 86223c79-3864-5bf0-83f7-82e725a168b6"
8+
9+ [compat ]
10+ Graphs = " 1.4"
11+ julia = " 1"
12+
13+ [extras ]
14+ Test = " 8dfed614-e22c-5e08-85e1-65c5234f0b40"
15+
16+ [targets ]
17+ test = [" Test" ]
Original file line number Diff line number Diff line change 11# SNAPDatasets
22
3- [ ![ Build Status] ( https://travis-ci.org /JuliaGraphs/SNAPDatasets.jl.svg?branch=master )] ( https://travis-ci.org /JuliaGraphs/SNAPDatasets.jl )
3+ [ ![ Build Status] ( https://github.com /JuliaGraphs/SNAPDatasets.jl/workflows/CI/badge .svg )] ( https://github.com /JuliaGraphs/SNAPDatasets.jl/actions?query=workflow%3ACI+branch%3Amaster )
44[ ![ codecov.io] ( http://codecov.io/github/JuliaGraphs/SNAPDatasets.jl/coverage.svg?branch=master )] ( http://codecov.io/github/JuliaGraphs/SNAPDatasets.jl?branch=master )
55
6-
7- [ LightGraphs.jl] ( https://github.com/JuliaGraphs/LightGraphs.jl ) -formatted
6+ [ Graphs.jl] ( https://github.com/JuliaGraphs/Graphs.jl ) -formatted
87graph files taken from the [ SNAP Datasets] ( https://snap.stanford.edu/data/index.html ) collection.
98
10-
119Example usage:
1210``` julia
1311using SNAPDatasets
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11module SNAPDatasets
22
3- using LightGraphs
3+ using Graphs
44
55const SNAPDIR = joinpath (@__DIR__ ," .." ," data" )
66
You can’t perform that action at this time.
0 commit comments