diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-02-26 08:45:47 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-07-22 19:49:43 +0100 |
commit | 5ee82129d58a9091b29dd456307cfb0083896a81 (patch) | |
tree | 88639a4e63f14d84d1efc6d21a29b4ead9b05716 /.github | |
parent | f8bc029c822299e65a6c56c9e461f63298fa87b8 (diff) | |
download | spacebeans-5ee82129d58a9091b29dd456307cfb0083896a81.tar.gz spacebeans-5ee82129d58a9091b29dd456307cfb0083896a81.zip |
Added CI via GH actions
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/actions.yaml | 18 |
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 + |