Skip to content

Fix platforms

Fix platforms #504

Workflow file for this run

---

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

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: integration-epel
name: ci
"on":
pull_request:
push:
branches:
- main
jobs:
lint-unit:
uses: sous-chefs/.github/.github/workflows/lint-unit.yml@3.1.1
permissions:
actions: write
checks: write
pull-requests: write
statuses: write
issues: write
integration-epel:
needs: lint-unit
runs-on: ubuntu-latest
strategy:
matrix:
os:
- "almalinux-8"
- "almalinux-9"
- "centos-stream-8"
- "centos-stream-9"
- "rockylinux-8"
- "rockylinux-9"
suite:
- "epel"
steps: &steps
- name: Check out code
uses: actions/checkout@v4
- name: Install Chef
uses: actionshub/chef-install@3.0.0
- name: Dokken
uses: actionshub/test-kitchen@3.0.0
env:
CHEF_LICENSE: accept-no-persist
KITCHEN_LOCAL_YAML: kitchen.dokken.yml
with:
suite: ${{ matrix.suite }}
os: ${{ matrix.os }}
integration-nginx-full:
needs: lint-unit
runs-on: ubuntu-latest
strategy:
matrix:
os:
- "ubuntu-2204"
- "ubuntu-2404"
suite:
- "distro-nginx-full"
fail-fast: false
steps: *steps
integration:
needs: lint-unit
runs-on: ubuntu-latest
strategy:
matrix:
os:
- "almalinux-8"
- "almalinux-9"
- "amazonlinux-2023"
- "centos-stream-8"
- "centos-stream-9"
- "debian-11"
- "debian-12"
- "rockylinux-8"
- "rockylinux-9"
- "ubuntu-2204"
- "ubuntu-2404"
suite:
- "distro"
- "repo"
- "repo-overrides"
fail-fast: false
steps: *steps
final:
runs-on: ubuntu-latest
needs: [integration, integration-nginx-full, integration-epel]
steps:
- run: echo ${{needs.integration.outputs}}
- run: echo ${{needs.integration-nginx-full.outputs}}
- run: echo ${{needs.integration-epel.outputs}}