Update sous-chefs/.github action to v9 #175
This file contains hidden or 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/lint-unit.yml@9.0.0 | |
| permissions: | |
| actions: write | |
| checks: write | |
| pull-requests: write | |
| statuses: write | |
| issues: write | |
| integration: | |
| needs: lint-unit | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| os: | |
| - debian-12 | |
| - debian-13 | |
| - ubuntu-2204 | |
| - ubuntu-2404 | |
| suite: | |
| - default | |
| fail-fast: false | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v7 | |
| - name: Install Cinc Workstation | |
| uses: sous-chefs/.github/.github/actions/install-workstation@9.0.0 | |
| - name: Dokken | |
| uses: actionshub/test-kitchen@main | |
| env: | |
| CHEF_LICENSE: accept-no-persist | |
| KITCHEN_LOCAL_YAML: kitchen.dokken.yml | |
| with: | |
| suite: ${{ matrix.suite }} | |
| os: ${{ matrix.os }} | |
| - name: Print debug output on failure | |
| if: failure() | |
| run: | | |
| set -x | |
| sudo journalctl -l --since today | |
| KITCHEN_LOCAL_YAML=kitchen.dokken.yml /usr/bin/kitchen exec ${{ matrix.suite }}-${{ matrix.os }} -c "journalctl -l" |