From dcf2833ae997f69efefc36b3b6ae189aed434c84 Mon Sep 17 00:00:00 2001 From: Anton Keks Date: Thu, 26 Dec 2019 11:27:42 +0200 Subject: [PATCH] try github actions --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..83048c90 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +name: CI + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-java@v1 + with: + java-version: '8' + architecture: x64 + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project. + java -version