-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing example tests invocation
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 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 |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
jvm: temurin:17 | ||
apps: sbt | ||
- uses: catchpoint/workflow-telemetry-action@v2 | ||
- run: sbt scalafmtCheckAll compile coverage +test "repeat 3 example/multi-jvm:test" coverageReport coverageAggregate versionPolicyCheck documentation/makeSite | ||
- run: sbt scalafmtCheckAll compile coverage +test example:test "repeat 3 example/multi-jvm:test" coverageReport coverageAggregate versionPolicyCheck documentation/makeSite | ||
- uses: codecov/[email protected] | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |
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 |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
jvm: temurin:17 | ||
apps: sbt | ||
- name: Test and compute coverage | ||
run: sbt scalafmtCheckAll coverage +test example/multi-jvm:test coverageReport coverageAggregate | ||
run: sbt scalafmtCheckAll coverage +test example:test example/multi-jvm:test coverageReport coverageAggregate | ||
- name: Codecov | ||
uses: codecov/[email protected] | ||
env: | ||
|