Skip to content

Bootstrap Kubernetes #8

Bootstrap Kubernetes

Bootstrap Kubernetes #8

Workflow file for this run

name: "CI - Kubernetes"
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: "Lint manifests"
runs-on: ubuntu-latest
steps:
- name: "Checkout code"
uses: actions/checkout@v3
- id: manifest-files
name: "Find manifest files"
run: |
echo "manifests<<EOF" >> $GITHUB_OUTPUT
python scripts/find_manifests.py >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
- uses: azure/[email protected]
with:
manifests: ${{ steps.manifest-files.outputs.manifests }}