summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorKen Matsui <26405363+ken-matsui@users.noreply.github.com>2021-11-10 01:32:46 +0900
committerGitHub <noreply@github.com>2021-11-09 17:32:46 +0100
commit01749843c8ca08ed6f64495b6a36f853019e5239 (patch)
tree140c52619277e62673de275772f9cd316bd42046 /.github
parent2d39ce9eb29df52eaffebf9491f330633f53e4ac (diff)
feat(ci): Support macOS build & test on CI (#846)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rust.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 744bfdb0e..8cde3b229 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -12,7 +12,13 @@ env:
jobs:
build:
name: Build & Test
- runs-on: ubuntu-latest
+
+ strategy:
+ fail-fast: false
+ matrix:
+ os: [ ubuntu-latest, macos-latest ]
+
+ runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2