Skip to content

chore(deps): Bump google.golang.org/protobuf from 1.30.0 to 1.33.0 in /tools #26

chore(deps): Bump google.golang.org/protobuf from 1.30.0 to 1.33.0 in /tools

chore(deps): Bump google.golang.org/protobuf from 1.30.0 to 1.33.0 in /tools #26

Workflow file for this run

---
name: Pull Requests
on:
pull_request:
branches:
- main
- 'v*'
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.22.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: make test
- name: Check repo status
run: |-
REPO_STATUS="$(git status --porcelain)"
if [[ ! -z $REPO_STATUS ]]; then
echo "::error::Uncommitted changes detected"
echo "$REPO_STATUS"
exit 1
fi