Add CFA-EpiAutoGP model output for 2026-04-11 (#1472) #81
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: "Lint GitHub Actions Workflows" | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| actionlint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: "Download actionlint" | |
| id: get_actionlint | |
| run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) | |
| shell: bash | |
| - name: "Check Workflow Files" | |
| run: ${{ steps.get_actionlint.outputs.executable }} -color -ignore "SC2086" -ignore "timezone" | |
| shell: bash |