Skip to content

Merge pull request #249 from webtide/dependabot/maven/org.apache.mave… #750

Merge pull request #249 from webtide/dependabot/maven/org.apache.mave…

Merge pull request #249 from webtide/dependabot/maven/org.apache.mave… #750

Workflow file for this run

name: GitHub CI
on: [ push, pull_request ]
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest ]
java: [ 11, 17 ]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build with Maven
run: ./mvnw clean install -e -B -V -fae
env:
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}