Skip to content

Divide by 32 on HashByteSlice #15

Divide by 32 on HashByteSlice

Divide by 32 on HashByteSlice #15

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ '*' ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.14', '1.19', '1.20' ]
name: Go ${{ matrix.go }} test
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...