From 4fecc92c849485c720e79ae94ee2e9e71bd01f24 Mon Sep 17 00:00:00 2001 From: Lukas Pieper <30661176+lukaspieper@users.noreply.github.com> Date: Fri, 14 Aug 2020 14:18:31 +0200 Subject: [PATCH] Create continuous.yml --- .github/workflows/continuous.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/continuous.yml diff --git a/.github/workflows/continuous.yml b/.github/workflows/continuous.yml new file mode 100644 index 0000000..224db0f --- /dev/null +++ b/.github/workflows/continuous.yml @@ -0,0 +1,15 @@ +name: continuous + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Build with Gradle + run: ./gradlew build