Set up GitHub Actions

This commit is contained in:
2021-09-03 13:17:27 +02:00
parent 60805b7187
commit 20bd96918c
2 changed files with 7 additions and 4 deletions

23
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Test
on:
pull_request:
branches:
- master
jobs:
build:
name: Build project
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: 11
# Builds the release artifacts of the library
- name: Test
run: ./gradlew test