-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Break unit and instrumentation tests into separate workflows
- Loading branch information
1 parent
38405a0
commit 2c1101f
Showing
2 changed files
with
22 additions
and
18 deletions.
There are no files selected for viewing
20 changes: 2 additions & 18 deletions
20
.github/workflows/test.yaml → .github/workflows/integration-tests.yaml
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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Run Unit Tests | ||
|
||
on: [pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
unit_tests: | ||
name: "Run unit tests" | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: "Check out PR branch" | ||
uses: actions/checkout@v2 | ||
|
||
- name: "Set up JDK" | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: 17 | ||
|
||
- name: "Run unit tests" | ||
run: ./gradlew test |