Skip to content

Update hash.go

Update hash.go #327

Workflow file for this run

name: Go tests
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
arch: [amd64, arm64]
go-version: ["1.21.x", "1.22.0"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Go (from go.mod)
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: Run tests
run: go test -v ./...