Skip to content

chore(deps): bump codecov/codecov-action from 4.3.1 to 4.4.0 #12516

chore(deps): bump codecov/codecov-action from 4.3.1 to 4.4.0

chore(deps): bump codecov/codecov-action from 4.3.1 to 4.4.0 #12516

Workflow file for this run

on:
pull_request:
# Commented paths to avoid skipping required workflow
# See https://github.community/t/feature-request-conditional-required-checks/16761
# paths:
# - .github/workflows/checks.yml
# - .github/PULL_REQUEST/pull_request.go
# - .golangci.yml
# - "**/*.go"
# - go.mod
# - go.sum
name: checks
jobs:
linting:
runs-on: buildjet-4vcpu-ubuntu-2204
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.1
with:
all_but_latest: true
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.21"
stable: true
check-latest: true
- name: Snake case test cases
run: |
go run ./cmd/testcases/main.go && \
git diff --exit-code
- name: Lint
run: make lint
- name: Up to date Go proto generated
run: |
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.28 && \
PROTOC_VERSION=21.10 && \
curl -sL --output protoc.zip "https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip" && \
sudo unzip protoc.zip -d /usr/local && \
rm protoc.zip && \
go generate -run "protoc" ./... && \
git diff --exit-code