Skip to content

ci: use sous-chefs workflows 8.0.1 #159

ci: use sous-chefs workflows 8.0.1

ci: use sous-chefs workflows 8.0.1 #159

Workflow file for this run

---
name: ci
"on":
pull_request:
push:
branches: [main]
jobs:
lint-unit:
uses: sous-chefs/.github/.github/workflows/lint-unit.yml@8.0.1

Check failure on line 11 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/ci.yml" -> "sous-chefs/.github/.github/workflows/lint-unit.yml@8.0.1" : failed to fetch workflow: reference to workflow should be either a valid branch, tag, or commit
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@v5
- name: Install Cinc Workstation
uses: sous-chefs/.github/.github/actions/install-workstation@main
- 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"