fix: handle sglang l40s missing data gracefully #763
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 and Format | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - "release/*" | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| jobs: | |
| ruff: | |
| name: Lint and Format (Ruff) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install Ruff | |
| run: pip install ruff==0.14.1 | |
| - name: Check Linting | |
| run: ruff check . | |
| - name: Check Formatting | |
| run: ruff format --check . | |
| eslint: | |
| name: Lint and Format (ESLint) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Install ESLint | |
| run: npm install -g eslint@9.15.0 eslint-config-prettier@9.1.0 | |
| - name: Check Linting and Formatting | |
| run: eslint "**/*.{js,jsx}" --max-warnings 0 |