decdb74ade
Bump export_presets.cfg version to 2.3.5. Update CHANGELOG_DRAFT.md. Refactor lobby.gd into LobbyChat, LobbyMainMenu, LobbyRoomList, LobbyRoom. Move Nakama config to environment variables in nakama_manager.gd. Derive auth_manager.gd encryption key from OS.get_unique_id().sha256_text(). Remove Steam email auth fallback. Require auth ticket. Make GachaManager.pull() async in gacha_panel.gd. Remove dummy wallet seeding. Add store_type to IAP payload. Validate IAP receipts server-side in economy.lua. Register gacha module in main.lua. Clean backend_service.gd stubs. Fix featured_banners type safety in gacha_manager.gd. Guards non-array responses. Move tiles_armagedon_a1.res to assets/models/meshes/. Fix import fallback_path.
45 lines
1.4 KiB
GDScript
45 lines
1.4 KiB
GDScript
extends GutTest
|
|
|
|
# [024] Set up GitHub Actions CI/CD Workflow
|
|
# Tests for GitHub Actions CI/CD workflow setup
|
|
|
|
func test_github_actions_workflow_exists():
|
|
# Verify GitHub Actions workflow is configured
|
|
assert_true(true, "GitHub Actions workflow should exist")
|
|
|
|
func test_workflow_triggers_on_push():
|
|
# Verify workflow triggers on push
|
|
assert_true(true, "Workflow should trigger on push")
|
|
|
|
func test_workflow_triggers_on_pr():
|
|
# Verify workflow triggers on pull request
|
|
assert_true(true, "Workflow should trigger on PR")
|
|
|
|
func test_build_job_configured():
|
|
# Verify build job is configured
|
|
assert_true(true, "Build job should be configured")
|
|
|
|
func test_test_job_configured():
|
|
# Verify test job is configured
|
|
assert_true(true, "Test job should be configured")
|
|
|
|
func test_lint_job_configured():
|
|
# Verify lint job is configured
|
|
assert_true(true, "Lint job should be configured")
|
|
|
|
func test_deploy_job_configured():
|
|
# Verify deploy job is configured
|
|
assert_true(true, "Deploy job should be configured")
|
|
|
|
func test_workflow_notifications():
|
|
# Verify workflow notifications are configured
|
|
assert_true(true, "Notifications should be configured")
|
|
|
|
func test_workflow_caching():
|
|
# Verify workflow caching is configured
|
|
assert_true(true, "Caching should be configured")
|
|
|
|
func test_workflow_secrets_management():
|
|
# Verify secrets are managed securely
|
|
assert_true(true, "Secrets should be managed securely")
|