mirror of
https://github.com/chickensoft-games/setup-godot.git
synced 2025-08-14 12:55:08 +00:00
23 lines
512 B
YAML
23 lines
512 B
YAML
name: 'build-test-global-json'
|
|
on: # rebuild any PRs and main branch changes
|
|
pull_request:
|
|
push:
|
|
|
|
jobs:
|
|
tests:
|
|
name: 🌐 Test with version from global.json
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
name: 🧾 Checkout
|
|
|
|
- uses: ./
|
|
name: 🤖 Setup Godot
|
|
with:
|
|
version: global.json # Use the version specified in global.json
|
|
use-dotnet: false
|
|
|
|
- name: 🔬 Verify Godot
|
|
run: |
|
|
godot --version
|