Skip to content

fix(deps): update golang.org/x/exp digest to 7d7fa50 (#70) #2622

fix(deps): update golang.org/x/exp digest to 7d7fa50 (#70)

fix(deps): update golang.org/x/exp digest to 7d7fa50 (#70) #2622

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
merge_group:
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
-
name: Set up Go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5
with:
go-version: "~1.21"
-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
-
name: Tidy
run: go mod tidy -v
-
name: Build
run: go build -v
-
name: Test
run: go test -v ./...