diff options
author | vitalyster | 2020-11-11 06:19:59 +0300 |
---|---|---|
committer | GitHub | 2020-11-11 06:19:59 +0300 |
commit | b4b968d9c5d0409e67892989b41272cbf5168193 (patch) | |
tree | 6a59877a25adc5802b79615b9e36d448d6420901 /.github/workflows | |
parent | 23bd64885675848e3629d89ca9320e06110494b9 (diff) |
CI: add Windows and macOS to matrix
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 05793a62..fda6c06d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,9 +4,10 @@ on: [push, pull_request] jobs: build: - - runs-on: ubuntu-20.04 - + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-20.04, windows-latest, macos-latest] steps: - uses: actions/checkout@v2 - name: Set up JDK |