Skip to content

Commit 593a9f2

Browse files
committed
add ci matrix
1 parent 175d55a commit 593a9f2

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/ubuntu.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ on:
99

1010
jobs:
1111
test:
12-
runs-on: ubuntu-18.04
12+
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
15-
python-version: [3.7, 3.8]
15+
os: [ubuntu-16.04, ubuntu-18.04]
16+
python-version: [3.7, 3.8, 3.9]
1617
steps:
1718
- name: Checkout source code
1819
uses: actions/checkout@v2

.github/workflows/windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: windows-2019
1313
strategy:
1414
matrix:
15-
python-version: [3.7, 3.8]
15+
python-version: [3.7, 3.8, 3.9]
1616
steps:
1717
- name: Checkout source code
1818
uses: actions/checkout@v2

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ scipy = "^1.6.0"
1313
transforms3d = "^0.3.1"
1414
scikit-learn = "0.23.1"
1515
matplotlib = "^3.3.3"
16-
open3d = "^0.11.0"
16+
open3d = "^0.14.1"
1717
dq3d = {version = "^0.3.6", optional = true}
1818
cupy = {version = "^9.5.0", optional = true}
1919

0 commit comments

Comments
 (0)