mirror of
https://github.com/danbulant/deno_install
synced 2026-06-24 17:21:48 +00:00
25 lines
No EOL
471 B
YAML
25 lines
No EOL
471 B
YAML
environment:
|
|
matrix:
|
|
- TYPE: powershell
|
|
- TYPE: python
|
|
PYTHON_DIR: "C:\\Python27"
|
|
- TYPE: python
|
|
PYTHON_DIR: "C:\\Python33"
|
|
|
|
build: off
|
|
|
|
for:
|
|
- matrix:
|
|
only:
|
|
- TYPE: powershell
|
|
test_script:
|
|
- ps: .\install_test.ps1
|
|
- pwsh install_test.ps1
|
|
|
|
- matrix:
|
|
only:
|
|
- TYPE: python
|
|
install:
|
|
- "%PYTHON_DIR%\\python.exe install.py"
|
|
test_script:
|
|
- "%PYTHON_DIR%\\python.exe install_test.py" |