gdextension: Sync with upstream commit a013481b0911e59cc3f3dea7ebb732β¦ #251
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
name: π GHA | |
on: [push, pull_request, merge_group] | |
concurrency: | |
group: ci-${{ github.actor }}-${{ github.head_ref || github.run_number }}-${{ github.ref }}-runner | |
cancel-in-progress: true | |
jobs: | |
# First stage: Only static checks, fast and prevent expensive builds from running. | |
static-checks: | |
if: '!vars.DISABLE_GODOT_CI' | |
name: π Static Checks | |
uses: ./.github/workflows/static_checks.yml | |
# Second stage: Run all the builds and some of the tests. | |
ci: | |
name: π οΈ Continuous Integration | |
needs: static-checks | |
uses: ./.github/workflows/ci.yml |