Additional fixes for EL9 and EL7 (#21) #101
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] | |
permissions: | |
actions: write | |
checks: write | |
pull-requests: write | |
statuses: write | |
issues: write | |
integration: | |
needs: lint-unit | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: | |
- almalinux-8 | |
- almalinux-9 | |
- amazonlinux-2023 | |
- centos-7 | |
- centos-stream-8 | |
- centos-stream-9 | |
- debian-10 | |
- debian-11 | |
- debian-12 | |
- opensuse-leap-15 | |
- ubuntu-1804 | |
- ubuntu-2004 | |
- ubuntu-2204 | |
suite: | |
- default | |
fail-fast: false | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install Chef | |
uses: actionshub/chef-install@main | |
- name: test-kitchen | |
uses: actionshub/test-kitchen@main | |
env: | |
CHEF_LICENSE: accept-no-persist | |
KITCHEN_LOCAL_YAML: kitchen.dokken.yml | |
with: | |
suite: ${{ matrix.suite }} | |
os: ${{ matrix.os }} |