RTX Code Release (PI-4): Additions to T-Route to be run at the Old River Control Center to connect disconnected flowline networks and assimilate using observations #470
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 and Test Docker Image | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build Docker image | |
run: docker build -t troute -f docker/Dockerfile.troute . | |
# To run tests in a separate job | |
# either save image artifact or upload to dockerhub | |
- name: Run LowerColorado Test | |
continue-on-error: true # Continue with the next steps even if this step fails | |
run: docker/troute.sh -V3 -f test/LowerColorado_TX/test_AnA.yaml | |