Fail workflow if input size is empty. #457
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: Build Transform Images | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "dev" | |
pull_request: | |
branches: | |
- "dev" | |
jobs: | |
build-code: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build and Test Code Transforms | |
run: | | |
make -C transforms/code DOCKER=docker image test-image | |
build-universal: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build and Test Universal Transforms | |
run: | | |
make -C transforms/universal DOCKER=docker image test-image | |
build-tools: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build and Test Universal Transforms | |
run: | | |
make -C tools/ingest2parquet DOCKER=docker image test-image |