Skip to content

updating readme

updating readme #5

Workflow file for this run

name: Go CI
on:
push:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out source
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.x' # Use a specific Go version or '1.x' for the latest
- name: Build
run: go build ./...
- name: Test
run: go test ./... -v