Skip to content

build: cache maven repos in build ci (#40) #23

build: cache maven repos in build ci (#40)

build: cache maven repos in build ci (#40) #23

name: Maven Build on Main Branch
on:
push:
branches:
- main
jobs:
build:
name: Maven Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'zulu'
cache: 'maven'
- name: Build with Maven
run: mvn clean install