Skip to content

Commit 551b564

Browse files
Alan-Chaarnested
authored andcommitted
Fix typos and adjust capitalization
1 parent bc24845 commit 551b564

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ It also pulls the list of release tags from
2727
[https://go.dev/dl/](https://go.dev/dl/) and exposes the latest
2828
released Go version as a variable as well.
2929

30-
From the list of released go versions and the minimal version your
30+
From the list of released Go versions and the minimal version your
3131
module supports we also build a "matrix" variable to be used as a
3232
build matrix.
3333

@@ -41,7 +41,7 @@ specify the working directory where it is located:
4141

4242
```yaml
4343
working-directory:
44-
description: Working direcory where you go.mod file is located
44+
description: Working directory where you go.mod file is located
4545
required: false
4646
default: .
4747
unsupported:
@@ -62,25 +62,25 @@ patch-level:
6262
6363
```yaml
6464
module:
65-
description: The go module path (as specified by go.mod)
65+
description: The Go module path (as specified by go.mod)
6666
go-mod-version:
67-
description: The go version specified by go.mod
67+
description: The Go version specified by go.mod
6868
minimal:
69-
description: The minial go version
69+
description: The minimal Go version
7070
matrix:
71-
description: An (stringified) array of go versions from the minimal supported version to the latest released version
71+
description: An (stringified) array of Go versions from the minimal supported version to the latest released version
7272
latest:
73-
description: The latest go version
73+
description: The latest Go version
7474
```
7575
7676
## Examples
7777
78-
Let's say your `go.mod` specifies go 1.13 as the minimal supported
79-
version and you want your workflow to setup go version 1.13 using the
78+
Let's say your `go.mod` specifies Go 1.13 as the minimal supported
79+
version and you want your workflow to setup Go version 1.13 using the
8080
[actions/setup-go](https://github.com/actions/setup-go) action:
8181

8282
```yaml
83-
name: My go workflow
83+
name: My Go workflow
8484
on: pull_request
8585
8686
jobs:
@@ -112,7 +112,7 @@ name: Test
112112
113113
jobs:
114114
go-versions:
115-
name: Lookup go versions
115+
name: Lookup Go versions
116116
runs-on: ubuntu-latest
117117
outputs:
118118
matrix: ${{ steps.versions.outputs.matrix }}
@@ -134,7 +134,7 @@ jobs:
134134
with:
135135
go-version: ${{ matrix.version }}
136136
check-latest: true
137-
- name: go test
137+
- name: Go test
138138
run: go test -v -race -cover -covermode=atomic -coverprofile=coverage.txt ./...
139139
```
140140

0 commit comments

Comments
 (0)