Document that Mat3x3
and Mat4x4
constructors are column major
#9719
Workflow file for this run
This file contains 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
# Checks that all checkboxes in a PR are checked | |
name: Pull Request Checkboxes | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- edited | |
concurrency: | |
group: ${{ github.event.pull_request.number }}-pr-checkboxes | |
cancel-in-progress: true | |
permissions: | |
contents: "read" | |
pull-requests: "write" | |
jobs: | |
pr-checkboxes: | |
name: Check PR checkboxes | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.ref || '' }} | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- name: Install deps | |
shell: bash | |
run: | | |
python3 -m pip install PyGithub==1.59.0 | |
- name: Check PR checkboxes | |
shell: bash | |
run: | | |
./scripts/ci/check_pr_checkboxes.py \ | |
--github-token ${{ secrets.GITHUB_TOKEN }} \ | |
--github-repository ${{ github.repository }} \ | |
--pr-number ${{ github.event.pull_request.number }} |