Skip to content

Commit 3a1954e

Browse files
Merge pull request #3 from zengfung/master
Fixed CI issue
2 parents 07a0e45 + 364b4b2 commit 3a1954e

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

.github/workflows/CI.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,16 @@ on:
55
paths: # Specifying which files to run CI/CD for
66
- src/**
77
- test/runtests.jl
8-
- Manifest.toml
98
- Project.toml
109
pull_request:
1110
paths:
1211
- src/**
1312
- test/runtests.jl
14-
- Manifest.toml
1513
- Project.toml
1614
jobs:
1715
test:
18-
name: Julia $ - $ - $ - $
19-
runs-on: $
16+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
17+
runs-on: ${{ matrix.os }}
2018
strategy:
2119
fail-fast: false
2220
matrix:
@@ -33,18 +31,18 @@ jobs:
3331
- uses: actions/checkout@v2
3432
- uses: julia-actions/setup-julia@v1
3533
with:
36-
version: $
37-
arch: $
34+
version: ${{ matrix.version }}
35+
arch: ${{ matrix.arch }}
3836
- uses: actions/cache@v1
3937
env:
4038
cache-name: cache-artifacts
4139
with:
4240
path: ~/.julia/artifacts
43-
key: $-test-$-$
41+
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
4442
restore-keys: |
45-
$-test-$-
46-
$-test-
47-
$-
43+
${{ runner.os }}-test-${{ env.cache-name }}-
44+
${{ runner.os }}-test-
45+
${{ runner.os }}-
4846
- uses: julia-actions/julia-buildpkg@v1
4947
- uses: julia-actions/julia-runtest@v1
5048
- uses: julia-actions/julia-processcoverage@v1

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This is a very preliminary test function;
1+
# This is a very preliminary test function;
22
# Just small scale examples, e.g., P6 with 10 random signals. More coming!
33
using Test, MultiscaleGraphSignalTransforms, LinearAlgebra, SparseArrays, JLD2, Plots
44
@testset "MultiscalGraphSignalTransforms.jl" begin

0 commit comments

Comments
 (0)