Skip to content

Update actions/checkout digest to 34e1148 #1302

Update actions/checkout digest to 34e1148

Update actions/checkout digest to 34e1148 #1302

Workflow file for this run

name: Go Tests
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
with:
go-version-file: go.mod
- name: Get dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Unit tests
run: go test -v -cover -parallel 4 $(go list ./... | grep -v /e2e)