File tree Expand file tree Collapse file tree 6 files changed +73
-22
lines changed Expand file tree Collapse file tree 6 files changed +73
-22
lines changed Load Diff This file was deleted.
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
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# StaticGraphs
2
2
3
- [ ![ Build Status] ( https://travis-ci.org/JuliaGraphs/StaticGraphs.jl.svg?branch=master )] ( https://travis-ci.org/JuliaGraphs/StaticGraphs.jl )
4
-
3
+ [ ![ Build Status] ( https://github.com/JuliaGraphs/StaticGraphs.jl/workflows/CI/badge.svg )] ( https://github.com/JuliaGraphs/StaticGraphs.jl/actions?query=workflow%3ACI+branch%3Amaster )
5
4
[ ![ codecov.io] ( http://codecov.io/github/JuliaGraphs/StaticGraphs.jl/coverage.svg?branch=master )] ( http://codecov.io/github/JuliaGraphs/StaticGraphs.jl?branch=master )
6
5
7
6
Memory-efficient, performant graph structures optimized for large networks.
You can’t perform that action at this time.
0 commit comments