fix(deps): update github.com/ghodss/yaml digest to 0ca9ea5 - autoclosed #861
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2E | |
on: | |
push: | |
branches: | |
- master | |
# Run tests for any PRs. | |
pull_request: | |
env: | |
KIND_VERSION: v0.22.0 | |
KUBECTL_VERSION: v1.28.7 | |
jobs: | |
e2e-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: "go.mod" | |
- name: Install kubectl | |
env: | |
KUBECTL_VERSION: ${{ env.KUBECTL_VERSION }} | |
BIN_DIR: ${{ github.workspace }}/tools/ | |
run: | | |
mkdir -p $BIN_DIR | |
curl -sSLo "$BIN_DIR/kubectl" "https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl" | |
chmod +x "$BIN_DIR/kubectl" | |
echo "$BIN_DIR" >> "$GITHUB_PATH" | |
- uses: engineerd/setup-kind@v0.5.0 | |
with: | |
version: ${{ env.KIND_VERSION }} | |
- name: Info | |
run: | | |
kind version | |
kubectl cluster-info | |
kubectl version | |
- name: Build | |
run: | | |
make build | |
- name: Install ginkgo | |
run: | | |
go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo | |
- name: Testing | |
run: | | |
go mod download | |
ginkgo -r ./e2e |