Skip to content

Create workflow for maven #2

Create workflow for maven

Create workflow for maven #2

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8 ]
steps:
- name: Checkout Repository
uses: actions/checkout@v4.1.7
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4.2.1
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
architecture: x64
cache: maven
- name: Build
run: |
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
./acf build