Skip to content

chore: fix grammar of help text #1998

chore: fix grammar of help text

chore: fix grammar of help text #1998

Workflow file for this run

name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.19'
check-latest: true
- name: Checkout
uses: actions/checkout@v1
with:
path: ./src/github.com/${{ github.repository }}
- name: Build
run: make build
env:
GOPATH: ${{ runner.workspace }}
check:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.19'
check-latest: true
- name: Checkout
uses: actions/checkout@v1
with:
path: ./src/github.com/${{ github.repository }}
- name: GoReleaser Check
uses: goreleaser/goreleaser-action@v1
with:
version: latest
args: check
env:
GOPATH: ${{ runner.workspace }}