[issue #119] Update fcontext to allow override of built-in types #264
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 | |
- amazonlinux-2 | |
- centos-7 | |
- centos-stream-8 | |
- fedora-latest | |
- debian-10 | |
- debian-11 | |
- oracle-7 | |
- oracle-8 | |
- rockylinux-8 | |
- ubuntu-1804 | |
- ubuntu-2004 | |
# Disabled due to image problems: | |
# https://github.com/chef/bento/issues/1405 | |
# - ubuntu-2204 | |
suite: | |
- enforcing | |
- permissive | |
- disabled | |
- port | |
- fcontext | |
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 }} | |
integration-amazonlinux: | |
needs: lint-unit | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
os: | |
- amazonlinux-2023 | |
suite: | |
- resource | |
- resource-peclchannel | |
fail-fast: false | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 # v4 | |
- name: Install Chef | |
uses: actionshub/[email protected] | |
- name: Dokken | |
uses: actionshub/[email protected] | |
env: | |
CHEF_LICENSE: accept-no-persist | |
KITCHEN_LOCAL_YAML: kitchen.dokken.yml | |
with: | |
suite: ${{ matrix.suite }} | |
os: ${{ matrix.os }} |