tmp #4
Workflow file for this run
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: Smoke tests | |
on: | |
push: | |
branches: | |
- approxit/smoke-tests | |
jobs: | |
build: | |
name: Smoke tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: pipx run --spec poetry==1.6.1 poetry install --no-ansi | |
- name: Call `ray up` | |
env: | |
PYTHONUNBUFFERED: 1 | |
run: pipx run poetry run ray up golem-cluster-dev.yaml -y | |
- name: Call `ray down` | |
run: ray down golem-cluster-dev.yaml -y |