diff options
| author | Thibault Gagnaux <tgagnaux@gmail.com> | 2021-07-07 22:58:47 +0200 |
|---|---|---|
| committer | Thibault Gagnaux <tgagnaux@gmail.com> | 2021-07-07 22:58:47 +0200 |
| commit | 2fceaad440fffc1f6edbd8e4887469cc948edb5d (patch) | |
| tree | 8ceac945432e7c38ac7655d4590bdc5e2f9ef6c3 /.github/workflows | |
| parent | cd5d39b867ad5435039d1a47244252078600ca0b (diff) | |
| download | frege-gradle-plugin-2fceaad440fffc1f6edbd8e4887469cc948edb5d.tar.gz frege-gradle-plugin-2fceaad440fffc1f6edbd8e4887469cc948edb5d.tar.bz2 frege-gradle-plugin-2fceaad440fffc1f6edbd8e4887469cc948edb5d.zip | |
Splits tests into fast unit tests and slow functional tests
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0c68f2b..4f896e5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,7 +1,7 @@ name: Test on: push: - branches: [ main ] + branches: [ main, f-simple-javaExec-task-alternative ] pull_request: branches: [ main ] workflow_dispatch: @@ -22,7 +22,7 @@ jobs: - name: Run Tests run: | if [ "$RUNNER_OS" = "Windows" ]; then - gradlew.bat clean test + gradlew.bat clean check else - ./gradlew clean test + ./gradlew clean check fi
\ No newline at end of file |
