Skip to content

Update README.md

Update README.md #4

Workflow file for this run

name: Go CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.22' # Use the Go version you are using
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: go test -v ./...