File tree Expand file tree Collapse file tree 5 files changed +14
-36
lines changed Expand file tree Collapse file tree 5 files changed +14
-36
lines changed Original file line number Diff line number Diff line change @@ -15,20 +15,20 @@ jobs:
15
15
fail-fast : false
16
16
matrix :
17
17
version :
18
- - ' 1.6 '
19
- - ' 1.9 '
20
- - ' nightly '
18
+ - ' 1.10 '
19
+ - ' 1'
20
+ - ' pre '
21
21
os :
22
22
- ubuntu-latest
23
23
arch :
24
24
- x64
25
25
steps :
26
- - uses : actions/checkout@v2
27
- - uses : julia-actions/setup-julia@v1
26
+ - uses : actions/checkout@v4
27
+ - uses : julia-actions/setup-julia@v2
28
28
with :
29
29
version : ${{ matrix.version }}
30
30
arch : ${{ matrix.arch }}
31
- - uses : actions/cache@v1
31
+ - uses : actions/cache@v2
32
32
env :
33
33
cache-name : cache-artifacts
34
34
with :
41
41
- uses : julia-actions/julia-buildpkg@v1
42
42
- uses : julia-actions/julia-runtest@v1
43
43
- uses : julia-actions/julia-processcoverage@v1
44
- - uses : codecov/codecov-action@v1
44
+ - uses : codecov/codecov-action@v4
45
45
with :
46
46
file : lcov.info
47
+ token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ version = "0.7.0"
5
5
[deps ]
6
6
DelimitedFiles = " 8bb1440f-4735-579b-a4ab-409b98df4dab"
7
7
Graphs = " 86223c79-3864-5bf0-83f7-82e725a168b6"
8
- Requires = " ae029012-a4dd-5104-9daa-d747884805df"
9
8
SimpleTraits = " 699a6c99-e7fa-54fc-8d76-47d257e15c1d"
10
9
11
10
[weakdeps ]
@@ -21,14 +20,16 @@ GraphIOGraphMLExt = "EzXML"
21
20
GraphIOLGCompressedExt = " CodecZlib"
22
21
23
22
[compat ]
23
+ Aqua = " 0.8.9"
24
24
CodecZlib = " 0.7"
25
25
DelimitedFiles = " 1"
26
26
EzXML = " 1"
27
27
Graphs = " 1.4"
28
+ JuliaFormatter = " 1.0.62"
28
29
ParserCombinator = " 2.1"
29
- Requires = " 1"
30
30
SimpleTraits = " 0.9"
31
- julia = " 1"
31
+ Test = " 1"
32
+ julia = " 1.10"
32
33
33
34
[extras ]
34
35
Aqua = " 4c88cf16-eb10-579e-8560-4a9242c79595"
Original file line number Diff line number Diff line change 1
1
# GraphIO
2
2
3
3
[ ![ Build Status] ( https://github.com/JuliaGraphs/GraphIO.jl/workflows/CI/badge.svg )] ( https://github.com/JuliaGraphs/GraphIO.jl/actions?query=workflow%3ACI+branch%3Amaster )
4
- [ ![ codecov.io ] ( http ://codecov.io/github/JuliaGraphs/GraphIO.jl/coverage .svg?branch=master )] ( http ://codecov.io/github/JuliaGraphs/GraphIO.jl?branch=master )
4
+ [ ![ codecov] ( https ://codecov.io/github/JuliaGraphs/GraphIO.jl/graph/badge .svg?token=8Vw9q0ofeT )] ( https ://codecov.io/github/JuliaGraphs/GraphIO.jl)
5
5
[ ![ Code Style: Blue] ( https://img.shields.io/badge/code%20style-blue-4495d1.svg )] ( https://github.com/invenia/BlueStyle )
6
6
[ ![ Aqua QA] ( https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg )] ( https://github.com/JuliaTesting/Aqua.jl )
7
7
Original file line number Diff line number Diff line change 1
1
module GraphIO
2
2
3
- @static if ! isdefined (Base, :get_extension )
4
- using Requires
5
- end
6
-
7
- @static if ! isdefined (Base, :get_extension )
8
- function __init__ ()
9
- @require CodecZlib = " 944b1d66-785c-5afd-91f1-9de20f533193" begin
10
- include (" ../ext/GraphIOLGCompressedExt.jl" )
11
- end
12
- @require EzXML = " 8f5d6c58-4d21-5cfd-889c-e3ad7ee6a615" begin
13
- include (" ../ext/GraphIOGEXFExt.jl" )
14
- include (" ../ext/GraphIOGraphMLExt.jl" )
15
- end
16
- @require ParserCombinator = " fae87a5f-d1ad-5cf0-8f61-c941e1580b46" begin
17
- include (" ../ext/GraphIODOTExt.jl" )
18
- include (" ../ext/GraphIOGMLExt.jl" )
19
- end
20
- end
21
- end
22
-
23
3
include (" CDF/Cdf.jl" )
24
4
include (" DOT/Dot.jl" )
25
5
include (" Edgelist/Edgelist.jl" )
Original file line number Diff line number Diff line change @@ -15,11 +15,7 @@ include("graphio.jl")
15
15
# write your own tests here
16
16
@testset verbose = true " GraphIO" begin
17
17
@testset " Code quality" begin
18
- Aqua. test_all (GraphIO; stale_deps= false , project_toml_formatting= false )
19
- Aqua. test_stale_deps (GraphIO; ignore= [:Requires ])
20
- if VERSION >= v " 1.9"
21
- Aqua. test_project_toml_formatting (GraphIO)
22
- end
18
+ Aqua. test_all (GraphIO)
23
19
end
24
20
@testset " Code formatting" begin
25
21
@test JuliaFormatter. format (GraphIO; verbose= false , overwrite= false )
You can’t perform that action at this time.
0 commit comments