Skip to content

chore(deps): bump google.golang.org/protobuf from 1.36.3 to 1.36.4 in /bunpgd #827

chore(deps): bump google.golang.org/protobuf from 1.36.3 to 1.36.4 in /bunpgd

chore(deps): bump google.golang.org/protobuf from 1.36.3 to 1.36.4 in /bunpgd #827

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
version: [1.23, 1.22, 1.21]
os: [ubuntu-latest] # [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.version }}
- run: go version
- run: go test $(go work edit -json | jq -c -r -f filter.jq)
- run: go test -race -cover -coverprofile="coverage.txt" $(go work edit -json | jq -c -r -f filter.jq)
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}