Rename glTF files & folders for ChronographWatch #427
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: glTF Validation | |
| on: [pull_request] | |
| env: | |
| CI: true | |
| LINK: "https://github.com/KhronosGroup/glTF-Validator/releases/download/2.0.0-dev.3.10/gltf_validator-2.0.0-dev.3.10-linux64.tar.xz" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install glTF Validator | |
| run: | | |
| curl -sL $LINK | tar xJ | |
| - name: Validate glTF samples | |
| run: | | |
| ./gltf_validator -r -a ./Models/ | |
| - name: Upload Validation Reports | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: validation-reports | |
| path: | | |
| **/*.report.json |