Phase 3: schema v4 — string command types and page triggers #4
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: test | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Cache Godot binary | |
| uses: actions/cache@v4 | |
| with: | |
| path: bin/godot | |
| key: godot-${{ runner.os }}-4.6 | |
| - name: Install Godot | |
| run: make setup | |
| - name: Run scenario tests | |
| run: make test |