Version 2026.7.0 #238
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: Continuous Integration | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: Formatting and Linting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| cache: "pip" | |
| - name: Install Ruff | |
| run: pip install ruff | |
| - name: Lint with Ruff | |
| run: ruff check . | |
| - name: Check formatting with Ruff | |
| run: ruff format --check . | |
| blender: | |
| strategy: | |
| matrix: | |
| blender: [ "5.2.0", "4.5.12", "4.2.23" ] | |
| name: Blender ${{ matrix.blender }} | |
| needs: lint | |
| uses: Mustard2/blender-workflows/.github/workflows/blender-build.yml@v4 | |
| with: | |
| timeout-seconds: 180 | |
| blender-version: ${{ matrix.blender }} |