Add CI for windows.

This commit is contained in:
Fangjun Kuang 2022-06-01 17:48:25 +08:00
parent 41bd60a538
commit 3e2979ec45

View File

@ -1,9 +1,10 @@
name: build
name: build-windows-cpu
on:
push:
branches:
- master
- fix-windows
pull_request:
branches:
- master
@ -16,8 +17,10 @@ jobs:
fail-fast: false
matrix:
os: [windows-2019]
torch: ["1.6.0", "1.7.0", "1.7.1", "1.8.0", "1.8.1", "1.9.0", "1.10.0", "1.11.0"]
python-version: [3.6, 3.7, 3.8, 3.9]
# torch: ["1.6.0", "1.7.0", "1.7.1", "1.8.0", "1.8.1", "1.9.0", "1.10.0", "1.11.0"]
# python-version: [3.6, 3.7, 3.8, 3.9]
torch: ["1.10.0", "1.11.0"]
python-version: [3.8]
steps:
- uses: actions/checkout@v2