Add PR check using GitHub Actions

This commit is contained in:
Petr Mrázek 2022-10-24 14:22:18 +02:00
parent 3c773a7188
commit 0c9c87e4e6

24
.github/workflows/pr-check.yml vendored Normal file
View file

@ -0,0 +1,24 @@
name: pr-check
on:
pull_request:
branches: [ master ]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
container:
image: adoptopenjdk/openjdk8:latest
steps:
- uses: actions/checkout@v3
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: build test
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: '**/build/test-results/test/TEST-*.xml'