Skip to content

Commit

Permalink
Create build-test
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuchs-David authored Apr 12, 2023
1 parent 2085633 commit 5ec94dc
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build-test
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build and Test

on:
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '13'
- name: Build with Maven
run: mvn clean verify
env:
GITHUB_TOKEN: ${{ secrets.BUILD_TOKEN }}

0 comments on commit 5ec94dc

Please sign in to comment.