Skip to content

docs: update README with analyze command, tui, and fix stale image refs #10

docs: update README with analyze command, tui, and fix stale image refs

docs: update README with analyze command, tui, and fix stale image refs #10

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
permissions:
contents: read
jobs:
smoke-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Kind
run: |
KIND_VERSION=v0.27.0
curl -Lo ./kind https://kind.sigs.k8s.io/dl/${KIND_VERSION}/kind-linux-amd64
chmod +x ./kind
sudo mv ./kind /usr/local/bin/kind
- name: Run smoke test
run: bash lib/scripts/kind-smoke.sh
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: ShellCheck
run: |
sudo apt-get update -qq && sudo apt-get install -y -qq shellcheck
shellcheck kubepyrometer lib/run.sh lib/scripts/*.sh || true