Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Bump github.com/go-logr/logr from 1.3.0 to 1.4.1 #240

Bump github.com/go-logr/logr from 1.3.0 to 1.4.1

Bump github.com/go-logr/logr from 1.3.0 to 1.4.1 #240

Workflow file for this run

name: Test and Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
validation:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.20'
- name: Lint
run: make lint
- name: go test
run: make test
- name: generate coverage report
run: make cover
- name: Upload coverage report (codcov.io)
run: bash <(curl -s https://codecov.io/bash)