aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2021-02-26 08:45:47 +0000
committerJuan J. Martinez <jjm@usebox.net>2021-07-22 19:49:43 +0100
commit5ee82129d58a9091b29dd456307cfb0083896a81 (patch)
tree88639a4e63f14d84d1efc6d21a29b4ead9b05716 /.github/workflows
parentf8bc029c822299e65a6c56c9e461f63298fa87b8 (diff)
downloadspacebeans-5ee82129d58a9091b29dd456307cfb0083896a81.tar.gz
spacebeans-5ee82129d58a9091b29dd456307cfb0083896a81.zip
Added CI via GH actions
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/actions.yaml18
1 files changed, 18 insertions, 0 deletions
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
+