Update build workflow - new name and updated dependencies

This commit is contained in:
P0nk
2022-10-16 08:48:32 +02:00
parent 5c7fcdae06
commit e12d853499
2 changed files with 7 additions and 8 deletions

20
.github/workflows/run-build.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
# This workflow will build a Java project with Maven
name: Run build
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Build with Maven (compile -> test -> package)
run: mvn -B package --file pom.xml