added random space to tests #1
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: Godot unit testing | |
on: | |
pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: croconut/[email protected] | |
with: | |
version: "4.2.2" | |
# 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.0" | |
# the directory containing Gut tests | |
test-dir: "res://tests" | |
max-fails: 0 # not checked by default, set to a number to limit the | |
# maximum amount of failed tests for a passing test suite |