Skip to content
This repository has been archived by the owner on Nov 26, 2023. It is now read-only.

Update readme.md

Update readme.md #14

Workflow file for this run

name: Go Test
on: [push, pull_request]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: "1.21"
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -p 1 ./...