Skip to content

build(deps): bump google.golang.org/protobuf from 1.36.0 to 1.36.1 (#… #88

build(deps): bump google.golang.org/protobuf from 1.36.0 to 1.36.1 (#…

build(deps): bump google.golang.org/protobuf from 1.36.0 to 1.36.1 (#… #88

Workflow file for this run

name: "checks"
on:
push:
branches:
- main
pull_request:
env:
GO_VERSION: "1.23"
jobs:
lint:
permissions:
contents: read
pull-requests: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
args: --verbose --timeout=3m
version: v1.60.1
go-mod-tidy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Check go mod tidy
run: |
go mod tidy
make assert-no-changed-files
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Run Tests
run: make test