Skip to content

chore: bump docker/login-action from 3.6.0 to 3.7.0 #1112

chore: bump docker/login-action from 3.6.0 to 3.7.0

chore: bump docker/login-action from 3.6.0 to 3.7.0 #1112

name: build-and-test
on:
push:
branches:
- "*"
pull_request:
permissions:
contents: read
jobs:
build-and-test:
runs-on: ubuntu-24.04
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
cache: true
go-version: 1.25.6
- name: Check project dependencies
run: |
rm go.sum
go mod tidy
git -c color.ui=always diff --exit-code go.mod go.sum
- name: Test
run: go test -race ./... -v -coverprofile=coverage.out -covermode=atomic -coverpkg=./...
- name: Set up kubectl
uses: azure/setup-kubectl@v4
with:
version: v1.35.0
- name: Generate Install Manifests
run: |
hack/generate-manifests.sh
git -c color.ui=always diff --exit-code deploy/
- name: Upload Coverage Report
uses: codecov/codecov-action@v5
with:
files: ./coverage.out
flags: unittests
name: codecov-umbrella
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}