Skip to content

Added GitHub Actions workflow #3

Added GitHub Actions workflow

Added GitHub Actions workflow #3

Workflow file for this run

name: Build Status
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17 for x64
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
architecture: x64
cache: maven
- name: Run the Maven test phase
run: mvn test