Skip to content

Commit 90dd4dc

Browse files
committed
Add CI/CD pipeline configuration for FasterXML Jackson Examples
1 parent b757a73 commit 90dd4dc

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/pipeline.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: FasterXML Jackson Examples CI/CD
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v3
14+
15+
- name: Set up JDK 21
16+
uses: actions/setup-java@v3
17+
with:
18+
java-version: '21'
19+
distribution: 'zulu'
20+
cache: maven
21+
22+
- name: Build with Maven
23+
run: mvn -B package --file pom.xml
24+
25+
- name: Run Tests
26+
run: mvn test

0 commit comments

Comments
 (0)