Update module github.com/envoyproxy/protoc-gen-validate to v1.2.1 #712
Workflow file for this run
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: test | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# skip if is it pushed by fluxcd | |
if: ${{ !contains(github.event.commits.*.author.name, 'fluxcd') }} | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v3 | |
- | |
name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '^1.19' | |
- | |
name: test | |
run: | | |
go list ./... | grep -v "github.com/gotti/meshover/wireguard" | xargs go test -cover |