diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-02-26 08:56:17 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-07-22 19:49:45 +0100 |
commit | 4002c2232078b727eabff21705f28e1a1cb7dc33 (patch) | |
tree | d94a9efb84cd6e737a4e8fe415d0422cf34322fd /.github/workflows/actions.yaml | |
parent | 5ee82129d58a9091b29dd456307cfb0083896a81 (diff) | |
download | spacebeans-4002c2232078b727eabff21705f28e1a1cb7dc33.tar.gz spacebeans-4002c2232078b727eabff21705f28e1a1cb7dc33.zip |
Use JDK 11, tweaks
Diffstat (limited to '.github/workflows/actions.yaml')
-rw-r--r-- | .github/workflows/actions.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index 473421a..acc9ac2 100644 --- a/.github/workflows/actions.yaml +++ b/.github/workflows/actions.yaml @@ -3,16 +3,16 @@ name: CI on: [push] jobs: - build: + test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: coursier/cache-action@v5 - - name: Set up JDK 1.8 + - name: Set up JDK 11 uses: actions/setup-java@v1 with: - java-version: 1.8 + java-version: 11 - name: Run tests run: ./mill server.test |