Skip to content

Update sous-chefs/.github action to v2.0.5 (#235) #190

Update sous-chefs/.github action to v2.0.5 (#235)

Update sous-chefs/.github action to v2.0.5 (#235) #190

Workflow file for this run

---
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:
- "amazonlinux-2"
- "centos-7"
- "centos-8"
- "debian-9"
- "debian-10"
- "fedora-latest"
- "opensuse-leap-15"
- "oraclelinux-7"
- "oraclelinux-8"
- "ubuntu-1804"
- "ubuntu-2004"
suite:
- "default"
fail-fast: false
steps:
- name: Check out code
uses: actions/checkout@v3
- 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 }}
integration-windows:
needs: lint-unit
runs-on: windows-latest
strategy:
matrix:
os:
- "windows-latest"
suite:
- "default"
fail-fast: false
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Install Chef
uses: actionshub/[email protected]
- name: test-kitchen
uses: actionshub/[email protected]
env:
CHEF_LICENSE: accept-no-persist
KITCHEN_LOCAL_YAML: kitchen.exec.yml
with:
suite: ${{ matrix.suite }}
os: ${{ matrix.os }}
integration-macos:
needs: lint-unit
runs-on: macos-latest
strategy:
matrix:
os:
- "macos-latest"
suite:
- "default"
fail-fast: false
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Install Chef
uses: actionshub/[email protected]
- name: test-kitchen
uses: actionshub/[email protected]
env:
CHEF_LICENSE: accept-no-persist
KITCHEN_LOCAL_YAML: kitchen.exec.yml
with:
suite: ${{ matrix.suite }}
os: ${{ matrix.os }}