Skip to content

Bump actions/setup-go from 5.0.1 to 5.1.0 #3339

Bump actions/setup-go from 5.0.1 to 5.1.0

Bump actions/setup-go from 5.0.1 to 5.1.0 #3339

Workflow file for this run

name: push-tests
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Set up Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
with:
go-version-file: ./go.mod
- name: Build
env:
CGO_ENABLED: 0
GOOS: linux
run: go build --tags static_all -v -o ./bin/vpc-analyzer ./cmd/analyzer
- name: Test
run: go test -v ./...