forked from ITensor/ITensors.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (39 loc) · 998 Bytes
/
test_ndtensors.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Run NDTensors tests
on:
push:
branches:
- main
tags: '*'
pull_request:
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ matrix.threads }} thread(s)
runs-on: ${{ matrix.os }}
env:
JULIA_NUM_THREADS: ${{ matrix.threads }}
strategy:
matrix:
version:
- '1.6'
- '1'
os:
- ubuntu-latest
threads:
- '1'
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- name: Install Julia dependencies
shell: julia --project=monorepo {0}
run: |
using Pkg;
Pkg.develop(path=".");
Pkg.develop(path="./NDTensors");
- name: Run the tests
run: |
julia --project=monorepo --depwarn=yes -e 'using Pkg; Pkg.test("NDTensors")'