Bump google/osv-scanner-action in the all-actions group #557
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ "**" ] | |
pull_request: | |
branches: [ "**" ] | |
workflow_dispatch: | |
env: | |
GO_VER: 1.24.4 | |
PROTOC_VER: 29.3 | |
PROTOC_GEN_GO_VER: v1.36.5 | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
name: Checkout Code | |
- name: Install Go | |
uses: actions/setup-go@v6 | |
with: | |
go-version: ${{ env.GO_VER }} | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
with: | |
version: ${{ env.PROTOC_VER }} | |
- name: check go.mod | |
run: | | |
go mod tidy | |
git diff --exit-code go.mod | |
- name: check vendor | |
run: | | |
go mod vendor | |
git diff --exit-code | |
- name: go fmt | |
run: | | |
go fmt ./... | |
git diff --exit-code | |
- name: goimports | |
run: | | |
go install golang.org/x/tools/cmd/goimports@latest | |
goimports -l -w `find . -name '*.go' | grep -v vendor | grep -v 'pb.go'` | |
git diff --exit-code | |
- name: check protobuf | |
run: | | |
go install google.golang.org/protobuf/cmd/protoc-gen-go@${{ env.PROTOC_GEN_GO_VER }} | |
protoc --go_opt=paths=source_relative --go_out=. smartbftprotos/*.proto | |
protoc --go_opt=paths=source_relative --go_out=. examples/naive_chain/*.proto | |
protoc --go_opt=paths=source_relative --go_out=. test/*.proto | |
git diff --exit-code | |
build: | |
needs: | |
- validate | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
name: Checkout Code | |
- name: Install Go | |
uses: actions/setup-go@v6 | |
with: | |
go-version: ${{ env.GO_VER }} | |
- name: Test | |
run: | | |
go test -count 1 -race ./... |