Skip to content

Add Build With Maven GitHub Action #2

Add Build With Maven GitHub Action

Add Build With Maven GitHub Action #2

Workflow file for this run

# this build is designed to replicate the Travis CI workflow
name: Java CI with Maven
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn clean install --file pom.xml