File tree Expand file tree Collapse file tree 4 files changed +12
-237
lines changed Expand file tree Collapse file tree 4 files changed +12
-237
lines changed Original file line number Diff line number Diff line change 10
10
pull_request :
11
11
branches :
12
12
- master
13
+ concurrency :
14
+ # Skip intermediate builds: always.
15
+ # Cancel intermediate builds: only if it is a pull request build.
16
+ group : ${{ github.workflow }}-${{ github.ref }}
17
+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
13
18
jobs :
14
19
test :
15
20
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
18
23
fail-fast : false
19
24
matrix :
20
25
version :
21
- - ' 1.6 '
26
+ - ' 1.8 '
22
27
- ' nightly'
23
28
os :
24
29
- ubuntu-latest
@@ -30,19 +35,10 @@ jobs:
30
35
with :
31
36
version : ${{ matrix.version }}
32
37
arch : ${{ matrix.arch }}
33
- - uses : actions/cache@v1
34
- env :
35
- cache-name : cache-artifacts
36
- with :
37
- path : ~/.julia/artifacts
38
- key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
39
- restore-keys : |
40
- ${{ runner.os }}-test-${{ env.cache-name }}-
41
- ${{ runner.os }}-test-
42
- ${{ runner.os }}-
38
+ - uses : julia-actions/cache@v1
43
39
- uses : julia-actions/julia-buildpkg@v1
44
40
- uses : julia-actions/julia-runtest@v1
45
41
- uses : julia-actions/julia-processcoverage@v1
46
- - uses : codecov/codecov-action@v1
42
+ - uses : codecov/codecov-action@v2
47
43
with :
48
- file : lcov.info
44
+ files : lcov.info
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ version = "1.0.0"
5
5
6
6
[deps ]
7
7
FGlT_jll = " 34b0a953-27c5-5560-82f5-8ee8a9e462bb"
8
- LightGraphs = " 093fc24a-ae57-5d10-9952-331d41423f4d "
8
+ Graphs = " 86223c79-3864-5bf0-83f7-82e725a168b6 "
9
9
SparseArrays = " 2f01184e-e22b-5df5-ae63-d93ebab69eaf"
10
10
11
11
[compat ]
12
12
FGlT_jll = " 1"
13
- LightGraphs = " 1"
13
+ Graphs = " 1"
14
14
julia = " 1.6"
15
15
16
16
[extras ]
Original file line number Diff line number Diff line change 1
1
using FastGraphletTransform
2
2
using Test
3
3
using Match
4
- using LightGraphs
4
+ using Graphs
5
5
using SparseArrays
6
6
7
7
function claw ()
You can’t perform that action at this time.
0 commit comments