Set Changelog to ## Unreleased #214
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: ci | |
"on": | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
lint-unit: | |
uses: sous-chefs/.github/.github/workflows/[email protected] | |
with: | |
platform: windows-latest | |
permissions: | |
actions: write | |
checks: write | |
pull-requests: write | |
statuses: write | |
issues: write | |
# This needs to run on vagrant due to the fact these nodes reboot during their | |
# runs | |
integration: | |
needs: lint-unit | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
os: | |
- "windows-2016" | |
- "windows-2019" | |
suite: | |
- "client" | |
- "install" | |
- "server2016" | |
- "server2017" | |
- "server2019" | |
fail-fast: false | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install Chef | |
uses: actionshub/[email protected] | |
- name: test-kitchen | |
uses: actionshub/[email protected] | |
env: | |
CHEF_LICENSE: accept-no-persist | |
with: | |
suite: ${{ matrix.suite }} | |
os: ${{ matrix.os }} |