diff options
author | Tim Smith <tsmith84@gmail.com> | 2021-04-13 19:46:38 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2021-04-14 15:06:23 -0700 |
commit | 07bbd831014b435ba37c4395b125bf4634f8b6f7 (patch) | |
tree | 09167ed3053e0ddc62a904ba7f81de166fbeaf7d /.github/workflows | |
parent | 1adcb5fe7892535acea3e01323cfc1fe2818ad3f (diff) | |
download | chef-07bbd831014b435ba37c4395b125bf4634f8b6f7.tar.gz |
Run choco tests on Windows 2016/2019gh_actions
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/func_spec.yml | 25 | ||||
-rw-r--r-- | .github/workflows/lint.yml (renamed from .github/workflows/chefstyle.yml) | 2 |
2 files changed, 26 insertions, 1 deletions
diff --git a/.github/workflows/func_spec.yml b/.github/workflows/func_spec.yml new file mode 100644 index 0000000000..5913fc31f4 --- /dev/null +++ b/.github/workflows/func_spec.yml @@ -0,0 +1,25 @@ +--- +name: func_spec + +"on": + pull_request: + push: + branches: + - master + +jobs: + choco: + strategy: + fail-fast: false + matrix: + os: [windows-2019, windows-2016] + # 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/chocolatey_package_spec.rb diff --git a/.github/workflows/chefstyle.yml b/.github/workflows/lint.yml index 9d00358f76..7462be46f3 100644 --- a/.github/workflows/chefstyle.yml +++ b/.github/workflows/lint.yml @@ -1,5 +1,5 @@ --- -name: ci +name: lint "on": pull_request: |