chore: add frozen_string_literal and apt_update to test recipes #160
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/[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-stream-9" | |
| - "debian-12" | |
| - "fedora-latest" | |
| - "rockylinux-8" | |
| - "rockylinux-9" | |
| - "ubuntu-2204" | |
| - "ubuntu-2404" | |
| suite: | |
| - "default" | |
| fail-fast: false | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - 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 }} |