Update the LIST_FILES in the c1152 regression tests // Source control_sfs test for debug and restart tests (#3151) #179
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: Check for Increased Warnings/Remarks | |
| on: | |
| pull_request: | |
| branches: [develop] | |
| push: | |
| branches: ['**'] | |
| workflow_dispatch: | |
| defaults: | |
| run: | |
| shell: bash -leo pipefail {0} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| MACHINES: "acorn derecho gaeac6 hera hercules orion ursa wcoss2" | |
| BASE_URL: https://api.github.com/repos/ufs-community/ufs-weather-model | |
| PR_NUM: ${{ github.event.number }} | |
| jobs: | |
| check-logs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout feature branch | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| pip install requests mdutils | |
| - name: Compare PR head logs with PR base logs | |
| run: | | |
| python ${{ github.workspace }}/.github/scripts/check_log_warnings_remarks.py >> $GITHUB_STEP_SUMMARY |