chore(deps): update module github.com/onsi/gomega to v1.35.1 #373
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: pr-build | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b #v3 | |
- name: Setup Go | |
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 #v3.5.0 | |
with: | |
go-version: 1.20.x | |
- name: Restore Go cache | |
uses: actions/cache@4723a57e26efda3a62cbde1812113b730952852d #v3.2.2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: fmt | |
run: make fmt | |
- name: vet | |
run: make vet | |
- name: lint | |
run: make lint | |
- name: test | |
run: make test | |
- name: build | |
run: make build | |
- name: Send go coverage report | |
uses: shogo82148/actions-goveralls@31ee804b8576ae49f6dc3caa22591bc5080e7920 #v1.6.0 | |
with: | |
path-to-profile: coverage.out | |
- name: Check if working tree is dirty | |
run: | | |
if [[ $(git diff --stat) != '' ]]; then | |
git --no-pager diff | |
echo 'run <make test> and commit changes' | |
exit 1 | |
fi | |
- name: Build container image | |
run: | | |
make docker-build | |
- name: Setup Kubernetes | |
uses: engineerd/setup-kind@aa272fe2a7309878ffc2a81c56cfe3ef108ae7d0 #v0.5.0 | |
with: | |
version: v0.17.0 | |
- name: Deploy certmanager | |
run: | | |
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.7.1/cert-manager.yaml | |
kubectl wait -n cert-manager --for=condition=Ready pods --all | |
- name: Load test image | |
run: kind load docker-image k8s-pause:latest | |
- name: Deploy controller | |
run: make deploy | |
- name: Setup podinfo | |
env: | |
PODINFO_VER: ${{ '6.0.3' }} | |
run: | | |
kubectl create ns podinfo | |
helm repo add podinfo https://stefanprodan.github.io/podinfo | |
helm upgrade --install --wait backend podinfo/podinfo \ | |
--version $PODINFO_VER \ | |
--namespace podinfo \ | |
--set replicaCount=2 | |
- name: Run k8s-pause tests | |
run: bash -e ./scripts/e2e-test.sh | |
- name: Debug failure | |
if: failure() | |
run: | | |
kubectl -n kube-system describe pods | |
kubectl -n podinfo get pods | |
kubectl -n k8s-pause-system describe pods | |
kubectl -n k8s-pause-system get all | |
kubectl -n k8s-pause-system logs deploy/k8s-pause-controller-manager manager |