Skip to content

Update readme.md

Update readme.md #151

Workflow file for this run

name: Go
on:
push:
paths-ignore:
- '**/README.md'
- .gitignore
- .gitpod.yml
- LICENSE
pull_request:
branches: [ main ]
paths-ignore:
- '**/README.md'
- .gitignore
- .gitpod.yml
- LICENSE
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...