Skip to content

feat: add initial GitHub Actions workflow with build step #3

feat: add initial GitHub Actions workflow with build step

feat: add initial GitHub Actions workflow with build step #3

Workflow file for this run

name: Build and Test Project
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Configure Java
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Build project
run: mvn clean install