Skip to content

bench: add DeepSeek-V4-Pro EPLB + MegaMoE case at c=512/4096 #912

bench: add DeepSeek-V4-Pro EPLB + MegaMoE case at c=512/4096

bench: add DeepSeek-V4-Pro EPLB + MegaMoE case at c=512/4096 #912

Workflow file for this run

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 ""