Docs: Add FP4/FP6 types #4
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: Validate PR desription | |
on: | |
pull_request: | |
types: [opened, edited, synchronize] | |
jobs: | |
validate-pr-description: | |
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.13" | |
- name: Validate PR description | |
env: | |
PR_DESCRIPTION: ${{ github.event.pull_request.body }} | |
run: python .github/scripts/validate_pr_description.py |