Skip to content

ci: add GitHub Actions workflow for CI pipeline #1

ci: add GitHub Actions workflow for CI pipeline

ci: add GitHub Actions workflow for CI pipeline #1

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- main
- feature/**
pull_request:
branches:
- main
- feature/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build and test with Maven
run: mvn clean verify