Skip to content

build(deps): bump github.com/onsi/gomega from 1.33.1 to 1.34.2 #565

build(deps): bump github.com/onsi/gomega from 1.33.1 to 1.34.2

build(deps): bump github.com/onsi/gomega from 1.33.1 to 1.34.2 #565

Workflow file for this run

name: Build, linters, and unit tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-linters-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: |
pip3 install --user --upgrade jinjanator
ln -s ~/.local/bin/jinjanate ~/.local/bin/j2
j2 --version
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
- name: Build
run: time make build
- name: Linters
uses: golangci/golangci-lint-action@v3
with:
version: v1.54.2
args: --timeout 3m --verbose cmd/... pkg/...
- name: Test
run: make test
- name: Generate YAML manifests
run: make manifests
- name: Check manifest correctness
run: |
if [[ -n $(git status --porcelain 2>/dev/null) ]]; then
echo "You probably need to run 'make manifests' and commit the changes"
exit 1
fi