fix: only validate existing zone pairs in pTransferLimit season check #404
Workflow file for this run
This file contains hidden or 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: Run GAMS Model | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: | |
| # Pinned: GAMS 54.x returns gams-transfer records with categorical dtypes, | |
| # which broke input verification/treatment (phantom groupby groups, UNDF | |
| # values). Last known-good is 53.5.1. Re-evaluate before moving to :latest. | |
| image: gams/gams:53.5.1 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v3 | |
| - name: Inject GAMS license | |
| env: | |
| GAMS_LICENSE: ${{ secrets.GAMS_LICENSE }} | |
| run: | | |
| echo "$GAMS_LICENSE" > /gams/gamslice.txt | |
| - name: Run GAMS model | |
| run: | | |
| cd epm | |
| gams main.gms --MODELTYPE RMIP |