We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6b50dc5 + 3d30c2b commit 1b77251Copy full SHA for 1b77251
.github/workflows/check-quickstartmodule.yml
@@ -57,7 +57,7 @@ jobs:
57
rel_type: [ "latest_stable", "latest_lts" ]
58
acc_type: [ "cuda11.x", "cuda10.2", "accnone" ]
59
py_vers: [ "3.7", "3.8", "3.9" ]
60
- os: ["ubuntu-18.04", "macos-latest"]
+ os: ["ubuntu-18.04", "macos-latest", "windows.4xlarge"]
61
env:
62
TEST_ACC: ${{ matrix.acc_type }}
63
TEST_VER: ${{ matrix.rel_type }}
@@ -72,6 +72,13 @@ jobs:
72
- name: Test pip3 install
73
run: |
74
python3 scripts/test_install.py
75
+ if: runner.os != 'Windows'
76
+ - name: Test pip3 install on Windows
77
+ shell: powershell
78
+ run: |
79
+ $env:PATH+=';'+$env:pythonLocation
80
+ python3.exe scripts/test_install.py
81
+ if: runner.os == 'Windows'
82
83
conda-install:
84
runs-on: ${{ matrix.os }}
0 commit comments