Skip to content

Prototype the compare tool github action. #1

Prototype the compare tool github action.

Prototype the compare tool github action. #1

Workflow file for this run

name: Compare PUDL outputs
on:
workflow_dispatch:
inputs:
baseline_path:
description: Remote path where baseline outputs are.
required: true
experiment_path:
description: Remote path where experiment outputs are.
required: true
compare_rows:
description: Compare row-level records.
type: boolean
default: false
jobs:
compare-outputs:
runs-on: ubuntu-latest
# TODO(rousik): put env: here to configure row-comparisons.
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- uses: snok/install-poetry@v1
with:
version: 1.2.0
- name: Install dependencies
run: poetry install

Check failure on line 29 in .github/workflows/compare.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/compare.yml

Invalid workflow file

You have an error in your yaml syntax on line 29
- name: Run my script
run: |
poetry run python src/pudl_output_differ/cli.py \
${{ inputs.baseline_path }} ${{ inputs.experiment_path }}