Skip to content

tmp

tmp #4

Workflow file for this run

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