Skip to content

Commit 61f8cd8

Browse files
authored
Merge pull request #1 from ithsjava25/ci-workflow
Adds a ci pipeline
2 parents 8c5dd09 + cd5f9e6 commit 61f8cd8

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI Pipeline
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v5
16+
17+
- name: Set up JDK 25
18+
uses: actions/setup-java@v5.2.0
19+
with:
20+
distribution: 'temurin'
21+
java-version: '25'
22+
cache: 'maven'
23+
24+
- name: Build and test
25+
run: ./mvnw clean verify -B

mvnw

100644100755
File mode changed.

0 commit comments

Comments
 (0)