move transform exceptions doc out of ray runtime to overview #952
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: Build Library | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "dev" | |
pull_request: | |
branches: | |
- "dev" | |
jobs: | |
build-python-lib: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: | |
- "3.11" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build data-processing-lib/python | |
run: | | |
make -C data-processing-lib/python DOCKER=docker venv build | |
build-ray-lib: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: | |
- "3.11" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build data-processing-lib/ray | |
run: | | |
make -C data-processing-lib/ray DOCKER=docker venv build | |
build-spark-lib: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: | |
- "3.11" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build data-processing-lib/spark | |
run: | | |
make -C data-processing-lib/spark DOCKER=docker venv build |