Modify Array type to encode values type, if possible, when serialized #321
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
name: pandora-ci | |
on: | |
push: | |
branches: | |
- "godot-4.x" | |
paths-ignore: | |
- '**.jpg' | |
- '**.png' | |
- '**.svg' | |
- '**.md' | |
- '**plugin.cfg' | |
pull_request: | |
paths-ignore: | |
- '**.jpg' | |
- '**.png' | |
- '**.svg' | |
- '**.md' | |
- '**plugin.cfg' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
unit-tests: | |
permissions: write-all | |
strategy: | |
fail-fast: false | |
max-parallel: 10 | |
matrix: | |
godot-version: ['4.0.4', '4.1.1', '4.2'] | |
name: "🤖 CI on Godot ${{ matrix.godot-version }}" | |
uses: ./.github/workflows/unit-tests.yml | |
with: | |
godot-version: ${{ matrix.godot-version }} | |
finalize: | |
if: ${{ !cancelled() }} | |
runs-on: ubuntu-latest | |
name: Final Results | |
needs: [unit-tests] | |
steps: | |
- run: exit 1 | |
if: >- | |
${{ | |
contains(needs.*.result, 'failure') | |
|| contains(needs.*.result, 'cancelled') | |
}} |