-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,11 +39,11 @@ jobs: | |
with: | ||
java-version: "[email protected]" | ||
|
||
- name: Build and run unit tests | ||
run: sbt "project model" test doc "project reader" test doc "project agent_spark3" test doc | ||
- name: Build and run tests | ||
run: sbt testAll | ||
|
||
- name: Build and run integration tests | ||
run: sbt "project model" testIT "project reader" testIT "project agent_spark3" testIT | ||
- name: Generate documenation | ||
run: sbt doc | ||
|
||
test-database-and-server: | ||
name: Test Database and Server | ||
|
@@ -75,10 +75,14 @@ jobs: | |
java-version: "[email protected]" | ||
|
||
- name: Build and run unit tests | ||
run: sbt "project database" test doc "project server" test doc | ||
run: sbt "project database" test "project server" test | ||
|
||
- name: Prepare testing database | ||
run: sbt flywayMigrate | ||
|
||
- name: Build and run integration tests | ||
run: sbt "project database" testIT "project server" testIT | ||
|
||
- name: Generate documentation | ||
run: sbt "project database" doc "project server" doc | ||
|