Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

chore: update README and archive this project. #15

chore: update README and archive this project.

chore: update README and archive this project. #15

Workflow file for this run

name: Pull Request Check
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Benchmark
run: go test -bench=. -benchmem -run=none ./...