Skip to content

chore(deps): bump google.golang.org/grpc from 1.72.1 to 1.79.3 #20

chore(deps): bump google.golang.org/grpc from 1.72.1 to 1.79.3

chore(deps): bump google.golang.org/grpc from 1.72.1 to 1.79.3 #20

Workflow file for this run

name: PR Checks
on:
pull_request:
branches:
- main
permissions:
contents: read
pull-requests: read
jobs:
lint-and-test:
name: Lint & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: go fmt check
run: |
if [ -n "$(go fmt ./...)" ]; then
echo "Run 'go fmt ./...' and commit changes"
exit 1
fi
- name: go vet
run: go vet ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --timeout=5m
- name: go mod verify
run: go mod verify
- name: Run tests
run: make test
build-docker:
name: Build Docker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Docker image
run: docker build -t controller:test .