Skip to content

Merge pull request #3 from stefan2904/patch-readme #3

Merge pull request #3 from stefan2904/patch-readme

Merge pull request #3 from stefan2904/patch-readme #3

Workflow file for this run

name: Build & Test
on:
pull_request:
branches:
- '*'
push:
branches:
- '*'
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup JDK
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '11'
- name: Run Tests
run: ./gradlew test --info