From 5ee82129d58a9091b29dd456307cfb0083896a81 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Fri, 26 Feb 2021 08:45:47 +0000 Subject: Added CI via GH actions --- .github/workflows/actions.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/actions.yaml (limited to '.github/workflows') diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml new file mode 100644 index 0000000..473421a --- /dev/null +++ b/.github/workflows/actions.yaml @@ -0,0 +1,18 @@ +name: CI + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: coursier/cache-action@v5 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Run tests + run: ./mill server.test + -- cgit v1.2.3