Skip to content

Commit 9b5b23b

Browse files
committed
Create test.yml
1 parent 136f943 commit 9b5b23b

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/test.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Run Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- 'master'
7+
pull_request:
8+
9+
jobs:
10+
test:
11+
name: Build Lambda
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout Repository
16+
uses: actions/checkout@v4
17+
18+
- name: Set-Up JDK
19+
uses: actions/setup-java@v4
20+
with:
21+
distribution: 'temurin'
22+
java-version: '23'
23+
architecture: x64
24+
cache: 'gradle'
25+
26+
- name: Build Lambda
27+
run: ./gradlew common:test

0 commit comments

Comments
 (0)