summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2021-10-16 20:23:23 -0700
committerGitHub <noreply@github.com>2021-10-16 20:23:23 -0700
commit1217fadb016ab3554548a575a5dbc5bee81fa336 (patch)
tree145a758506e386397155004dcd5ce54be33d1e50 /.github
parent53a6534cf29f182f09cab63a813202c404c2cd97 (diff)
parentf54b9937df95f50e4a26e70eb2292cb28aed5de6 (diff)
downloadchef-1217fadb016ab3554548a575a5dbc5bee81fa336.tar.gz
Merge pull request #11898 from chef/api-based-macos-userdefaults
rewrite macos_userdefaults using corefoundation gem
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/func_spec.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/func_spec.yml b/.github/workflows/func_spec.yml
index 70089b4bb1..27cee8a7f4 100644
--- a/.github/workflows/func_spec.yml
+++ b/.github/workflows/func_spec.yml
@@ -23,3 +23,18 @@ jobs:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rspec spec/functional/resource/chocolatey_package_spec.rb
+ userdefaults:
+ strategy:
+ fail-fast: false
+ matrix:
+ os: [macos-10.15, macos-11]
+ # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
+ ruby: [2.7, '3.0']
+ runs-on: ${{ matrix.os }}
+ steps:
+ - uses: actions/checkout@v2
+ - uses: ruby/setup-ruby@v1
+ with:
+ ruby-version: ${{ matrix.ruby }}
+ bundler-cache: true
+ - run: bundle exec rspec spec/functional/resource/macos_userdefaults_spec.rb