Skip to content

fixed license commands #9

fixed license commands

fixed license commands #9

Workflow file for this run

name: ci-ginkgo
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ginkgo-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: v1.18
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1.3.0
- name: Test connectivity
run: kubectl get no
- name: Deploy wordpress application
run: kubectl apply -f ./tests/recommend/res/wordpress-mysql-deployment.yaml
- name: Wait for pods
run: kubectl -n wordpress-mysql wait --for=condition=ready pod --all --timeout=5m
- name: Test accuknox-cli recommend using Ginkgo
run: |
make install
go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo
make recommend -C tests/
timeout-minutes: 30