Skip to content

Commit 3543589

Browse files
committed
Add Tensor tests.
1 parent 0e75d8f commit 3543589

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,14 @@ jobs:
3838
cmake -B build
3939
- name: Build
4040
run: VERBOSE=true make -C build -j `nproc`
41-
- name: Test
41+
- name: Test-Matrix
4242
run: ctest --test-dir ./build/test/bash
43+
- name: Install-Julia
44+
run: curl -fsSL https://install.julialang.org | sh
45+
- name: Install-Finch
46+
run: julia -e 'using Pkg; Pkg.add("Finch")'
47+
- name: Test-Tensor
48+
run: ctest --test-dir ./build/test/julia
4349

4450
clang:
4551
runs-on: 'ubuntu-latest'
@@ -55,5 +61,11 @@ jobs:
5561
cmake -B build
5662
- name: Build
5763
run: VERBOSE=true make -C build -j `nproc`
58-
- name: Test
64+
- name: Test-Matrix
5965
run: ctest --test-dir ./build/test/bash
66+
- name: Install-Julia
67+
run: curl -fsSL https://install.julialang.org | sh
68+
- name: Install-Finch
69+
run: julia -e 'using Pkg; Pkg.add("Finch")'
70+
- name: Test-Tensor
71+
run: ctest --test-dir ./build/test/julia

0 commit comments

Comments
 (0)