From 616fcd1e34ba05de790a8f2745f5d61e032ff51e Mon Sep 17 00:00:00 2001 From: Florian Zschocke Date: Sun, 5 Jan 2020 22:03:34 +0100 Subject: [PATCH] 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 --- .github/workflows/ci-build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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: -- 2.39.5