Skip to content

Merge pull request #7 from yoep/feature/#5-resourcebundle-documentation #7

Merge pull request #7 from yoep/feature/#5-resourcebundle-documentation

Merge pull request #7 from yoep/feature/#5-resourcebundle-documentation #7

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
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
inputs: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 17
cache: 'maven'
- name: Maven test
run: |
mvn -B test