Skip to content

docs: update readme #12

docs: update readme

docs: update readme #12

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
name: Run tests
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Go test
run: go test ./... -race