Skip to content

add docs about how to run #4

add docs about how to run

add docs about how to run #4

Workflow file for this run

name: Go Test
on: [push]
jobs:
test:
strategy:
matrix:
go-version: [1.15, 1.16, 1.17, 1.18, 1.19, 1.20, 1.21] # Add or remove versions as needed
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Run tests
run: go test -v ./...