summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2021-10-20 16:20:32 -0700
committerGitHub <noreply@github.com>2021-10-20 16:20:32 -0700
commit564af4a3c3b97abbad51587ec603bbe53d822426 (patch)
tree2b63255016465bda9a8391c953f513420a59e6a9
parent240a99c3fd78d8157aebaa799a197ca5cea9b8d3 (diff)
parenta3fc6954c59c97eeef6ba8152e40c22ba0afab74 (diff)
downloadohai-564af4a3c3b97abbad51587ec603bbe53d822426.tar.gz
Merge pull request #1700 from chef/macos_testing
Run macos unit tests in GitHub Actions
-rw-r--r--.github/workflows/unit.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml
index ddf9b1f1..2f2f9eab 100644
--- a/.github/workflows/unit.yml
+++ b/.github/workflows/unit.yml
@@ -9,11 +9,12 @@ name: unit
jobs:
test:
- runs-on: ubuntu-latest
strategy:
matrix:
+ os: ['ubuntu-latest', 'macos-latest']
ruby: ['2.7', '3.0']
name: Unit test on ${{ matrix.os }} with Ruby ${{ matrix.ruby }}
+ runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1