Skip to content

Commit

Permalink
* Run tests on all Scala versions
Browse files Browse the repository at this point in the history
  • Loading branch information
benedeki committed Nov 21, 2024
1 parent 7e86f6c commit 00ebc9e
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

0 comments on commit 00ebc9e

Please sign in to comment.