feat(ci): Support macOS build & test on CI (#846)

This commit is contained in:
Ken Matsui 2021-11-10 01:32:46 +09:00 committed by GitHub
parent 2d39ce9eb2
commit 01749843c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,13 @@ env:
jobs: jobs:
build: build:
name: Build & Test name: Build & Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2