Skip to content

Commit 3ef2f48

Browse files
committed
CI: Parallel test task
1 parent c0c36b0 commit 3ef2f48

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ on:
77
pull_request:
88

99
jobs:
10+
test:
11+
name: Run Unit Tests
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout Repository
15+
uses: actions/checkout@v4
16+
17+
- name: Set-Up JDK
18+
uses: actions/setup-java@v4
19+
with:
20+
distribution: 'temurin'
21+
java-version: '21'
22+
cache: 'gradle'
23+
24+
- name: Run Tests
25+
run: ./gradlew test --no-daemon
26+
1027
build:
1128
concurrency:
1229
group: ${{ github.workflow }}-${{ github.ref }}

0 commit comments

Comments
 (0)