Skip to content

Update README.md with badges #17

Update README.md with badges

Update README.md with badges #17

Workflow file for this run

name: Go test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Test
run: go test -v ./...
- name: Benchmark
run: go test -v -bench=. -benchmem