summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2021-10-20 16:28:28 -0700
committerGitHub <noreply@github.com>2021-10-20 16:28:28 -0700
commite1b6e332e150b1e87c2d8a8adb948a35c297fc24 (patch)
tree25272bedf953725adf4e3ba0ec61253c14107aa1
parent2d0a786c8e54b921ad2b29e69950339c4e6a0e26 (diff)
parent6e69e110e3fe7a1444e6e84301670958a22bb8b7 (diff)
downloadohai-e1b6e332e150b1e87c2d8a8adb948a35c297fc24.tar.gz
Merge pull request #1701 from chef/macos_testing
Exec ohai on macOS and Windows in tests
-rw-r--r--.github/workflows/exec.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/exec.yml b/.github/workflows/exec.yml
index fa43ed70..2d35a0e4 100644
--- a/.github/workflows/exec.yml
+++ b/.github/workflows/exec.yml
@@ -9,11 +9,12 @@ name: exec
jobs:
test:
- runs-on: ubuntu-latest
strategy:
matrix:
+ os: ['macos-latest', 'ubuntu-latest', 'windows-latest']
ruby: ['2.7', '3.0']
name: Exec Ohai on ${{ matrix.os }} with Ruby ${{ matrix.ruby }}
+ runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1