Skip to content

feat: create actions workflow to build application and run tests #1

feat: create actions workflow to build application and run tests

feat: create actions workflow to build application and run tests #1

Workflow file for this run

name: Person Manager CI Flow
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build
run: mvn package
- name: Run tests
run: mvn test