Skip to content

fix(deps): update module github.com/envoyproxy/go-control-plane to v0.13.4 #300

fix(deps): update module github.com/envoyproxy/go-control-plane to v0.13.4

fix(deps): update module github.com/envoyproxy/go-control-plane to v0.13.4 #300

Workflow file for this run

name: Go
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.20.2
- name: Build
run: go mod tidy && go build -v ./...
- name: Run coverage
run: export GOROOT=$(go env GOROOT); go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)