summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci-build.yml
diff options
context:
space:
mode:
authorFlorian Zschocke <florian.zschocke@devolo.de>2020-01-05 22:03:34 +0100
committerFlorian Zschocke <florian.zschocke@devolo.de>2020-01-05 22:03:34 +0100
commit616fcd1e34ba05de790a8f2745f5d61e032ff51e (patch)
treeba83fb6afb9e70de6ca3c6f091186d268f40f591 /.github/workflows/ci-build.yml
parent998e3de219479ab93ade39dd103502897a993ffb (diff)
downloadgitblit-616fcd1e34ba05de790a8f2745f5d61e032ff51e.tar.gz
gitblit-616fcd1e34ba05de790a8f2745f5d61e032ff51e.zip
Build on matrix of latest Ubunutu and latest Windows.
Currently that is Ubuntu 18.04 and Windows Server 2019. https://help.github.com/en/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners
Diffstat (limited to '.github/workflows/ci-build.yml')
-rw-r--r--.github/workflows/ci-build.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml
index 93bd863a..c5498701 100644
--- a/.github/workflows/ci-build.yml
+++ b/.github/workflows/ci-build.yml
@@ -5,9 +5,10 @@ on: push
jobs:
build:
name: Build and test
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
strategy:
matrix:
+ os: [ubuntu-latest, windows-latest]
java-version: [8, 11]
steps: