Merge branch 'dev' #56
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test CS Tools Bootstrapper | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
jobs: | |
test-bootstrapper: | |
name: Testing on Python ${{ matrix.python-version }} and ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
python-version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
steps: | |
# SETUP PYTHON. | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
# USES THE COMMAND FROM THE DOCS PAGE. | |
- if: ${{ runner.os == 'Windows' }} | |
name: Install on Windows. | |
run: powershell -ExecutionPolicy ByPass -c "IRM https://thoughtspot.github.io/cs_tools/install.py | python - --reinstall" | |
# USES THE COMMAND FROM THE DOCS PAGE. | |
- if: ${{ runner.os != 'Windows' }} | |
name: Install on Linux/MacOS. | |
run: curl -LsSf https://thoughtspot.github.io/cs_tools/install.py | python - --reinstall |