Skip to content

Update README.md

Update README.md #19

Workflow file for this run

name: fpl-go
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
- name: Run go mod tidy
run: go mod tidy
- name: Build
run: go build -v ./...
- name: Run gofmt
run: gofmt -w -l -s ./
- name: Run tests
run: go test -v ./...