Skip to content

build file typo

build file typo #4

Workflow file for this run

# Github Actions workflow for build verification, running the JUnit 5 integration tests
# and publishing the artifacts of this Maven project.We use JDK 17.
name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
- name: Build with Maven
run: mvn -B package --file pom.xml