Skip to content

Add UI popup for draw/discard pile #70

Add UI popup for draw/discard pile

Add UI popup for draw/discard pile #70

Workflow file for this run

# Automatically launches GUT tests on push and PR on the main
name: CI
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches:
- main
- map-implementation
pull_request:
branches:
- main
- map-implementation
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: croconut/godot-tester@v5.1
with:
# required
version: "4.2.1"
# the type of release of godot that the tests should be run with
release_type: "stable"
is-mono: "false"
# the folder with your project.godot file in it
path: "./"
# how long to spend importing assets before tests are run
# import-time: "15"
# how long tests can run in seconds
# test-timeout: "45"
# the ratio of tests that must pass for this action to pass
# e.g. 0.6 means 60% of your tests must pass
minimum-pass: "1"
# the directory containing Gut tests
test-dir: "res://Tests/"
# instead of running GUT's command line tool,
# you can run a test scene if you have one
# set up a scene like in this repo --> located at /tester_GUT_v9.0.1/test/alt_mode/tests.tscn
# set up a script like in this repo --> located at /tester_GUT_v9.0.1/test/alt_mode/cli_test.gd
# ensure that the script exits on test completion
# uses relative path from your godot project directory
# direct-scene: "tester_GUT_v9.0.1/test/alt_mode/tests.tscn"
# default is false, set true to count asserts instead of tests
assert-check: "true"
# not checked by default, set to a number to limit the
# maximum amount of failed tests for a passing test suite
# default is GUTs default: 'res://.gutconfig.json'; set this to load a different config file
# config-file: "res://.gut_editor_config.json"
# designate a custom url to download the godot binary from
# custom-godot-dl-url: ""
# relative path to the xml file to read / write GUT's results from, recommended
# for direct-scene users to check this file if you have issues
result-output-file: "CI_test_results.xml"