bench: add DeepSeek-V4-Pro EPLB + MegaMoE case at c=512/4096 #912
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: Actionlint | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - ".github/workflows/**" | |
| - ".github/actionlint.yaml" | |
| push: | |
| branches: [main] | |
| paths: | |
| - ".github/workflows/**" | |
| - ".github/actionlint.yaml" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| actionlint: | |
| name: Check GitHub Actions workflows | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install actionlint | |
| env: | |
| ACTIONLINT_VERSION: "1.7.7" | |
| run: | | |
| set -euo pipefail | |
| curl -fsSL \ | |
| "https://github.com/rhysd/actionlint/releases/download/v${ACTIONLINT_VERSION}/actionlint_${ACTIONLINT_VERSION}_linux_amd64.tar.gz" \ | |
| -o actionlint.tar.gz | |
| tar -xzf actionlint.tar.gz actionlint | |
| rm -f actionlint.tar.gz | |
| chmod +x ./actionlint | |
| - name: Run actionlint | |
| run: ./actionlint -color -shellcheck "" -pyflakes "" |