General speedups for the pipeline; Fix functionality for export (#90) #201
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
# Copyright 2025 Lincoln Institute of Land Policy | |
# SPDX-License-Identifier: Apache-2.0 | |
name: E2E Test Pipeline | |
on: | |
workflow_dispatch: # Allows manual triggering of the workflow | |
push: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run-e2e-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout GitHub Action" | |
uses: actions/checkout@v4 | |
id: checkout | |
- name: Run Reusable E2E Test Action | |
uses: ./ | |
with: | |
nabu_image: internetofwater/nabu:latest | |
gleaner_image: internetofwater/gleaner:latest |