Skip to content

Commit 1748c5e

Browse files
pitsianisnsailorfcdimitr
authored
replace LightGraphs with Graphs (#6)
* Replace LightGraphs with Graphs * Changing the project files to make sure Graphs is included as a dependency. * updated CI * Delete Manifest & update Project.toml Co-authored-by: Jason Barmparesos <[email protected]> Co-authored-by: Dimitris Floros <[email protected]>
1 parent 17af8a0 commit 1748c5e

File tree

4 files changed

+12
-237
lines changed

4 files changed

+12
-237
lines changed

.github/workflows/CI.yml

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ on:
1010
pull_request:
1111
branches:
1212
- 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/') }}
1318
jobs:
1419
test:
1520
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -18,7 +23,7 @@ jobs:
1823
fail-fast: false
1924
matrix:
2025
version:
21-
- '1.6'
26+
- '1.8'
2227
- 'nightly'
2328
os:
2429
- ubuntu-latest
@@ -30,19 +35,10 @@ jobs:
3035
with:
3136
version: ${{ matrix.version }}
3237
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
4339
- uses: julia-actions/julia-buildpkg@v1
4440
- uses: julia-actions/julia-runtest@v1
4541
- uses: julia-actions/julia-processcoverage@v1
46-
- uses: codecov/codecov-action@v1
42+
- uses: codecov/codecov-action@v2
4743
with:
48-
file: lcov.info
44+
files: lcov.info

Manifest.toml

Lines changed: 0 additions & 221 deletions
This file was deleted.

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ version = "1.0.0"
55

66
[deps]
77
FGlT_jll = "34b0a953-27c5-5560-82f5-8ee8a9e462bb"
8-
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
8+
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
99
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1010

1111
[compat]
1212
FGlT_jll = "1"
13-
LightGraphs = "1"
13+
Graphs = "1"
1414
julia = "1.6"
1515

1616
[extras]

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using FastGraphletTransform
22
using Test
33
using Match
4-
using LightGraphs
4+
using Graphs
55
using SparseArrays
66

77
function claw()

0 commit comments

Comments
 (0)