Skip to content

Commit fc40d0a

Browse files
committed
chore: add verify to actions pipeline
1 parent 3358040 commit fc40d0a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/main.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build Test and Deploy
2+
3+
on:
4+
push
5+
6+
jobs:
7+
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v3
14+
15+
- name: Set up JDK 21
16+
uses: actions/setup-java@v2
17+
with:
18+
java-version: '21'
19+
20+
- name: Build with Maven
21+
run: mvn clean verify

0 commit comments

Comments
 (0)