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

Update README.md

Update README.md #21

Workflow file for this run

name: "Go fmt check"
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
jobs:
fmt-check:
name: fmt-check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '>=1.19.0'
- run: |
gofmt -l -e -d .
test -z $(gofmt -l .)