Skip to content

Merge pull request #40 from spotify/snyk-upgrade-2fe05ccce6d1751b1901… #155

Merge pull request #40 from spotify/snyk-upgrade-2fe05ccce6d1751b1901…

Merge pull request #40 from spotify/snyk-upgrade-2fe05ccce6d1751b1901… #155

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Build with Maven
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 17 ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B verify