summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2021-10-20 16:23:12 -0700
committerTim Smith <tsmith84@gmail.com>2021-10-20 16:23:12 -0700
commit6e69e110e3fe7a1444e6e84301670958a22bb8b7 (patch)
tree3710c35fe022218e00a31613367169773c15f739
parenta3fc6954c59c97eeef6ba8152e40c22ba0afab74 (diff)
downloadohai-6e69e110e3fe7a1444e6e84301670958a22bb8b7.tar.gz
Exec ohai on macOS and Windows in tests
Signed-off-by: Tim Smith <tsmith@chef.io>
-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