Skip to content

Commit 981b88e

Browse files
committed
README: minor tweaks after a re-read
1 parent 264ed0a commit 981b88e

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,13 @@ jobs:
2929
3030
## Summary
3131
32-
Each workflow file has a number of jobs, which get run `on` specified events.
32+
Each workflow file has a number of jobs, which get run `on` specified events,
33+
and run concurrently with each other.
3334

34-
Each job runs on a configuration matrix. For example, we can test two major Go
35-
versions on three operating systems.
35+
Each `job` runs on a configuration `matrix`. For example, we can test two major
36+
Go versions on three operating systems.
3637

37-
Each job has a number of steps, such as installing Go, or checking out the
38+
Each job has a number of `steps`, such as installing Go, or checking out the
3839
repository's code.
3940

4041
## FAQs
@@ -94,7 +95,7 @@ language](https://docs.github.com/en/actions/reference/context-and-expression-sy
9495

9596
#### How do I set up a custom build matrix?
9697

97-
You can [include matrix
98+
You can [include extra matrix
9899
jobs](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-including-new-combinations),
99100
and you can [exclude specific matrix
100101
jobs](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-excluding-configurations-from-a-matrix).
@@ -152,9 +153,9 @@ Use `sudo apt`, making sure to only run the step on Linux:
152153
run: sudo apt update && sudo apt install -y --no-install-recommends mypackage
153154
```
154155

155-
#### How do I set up a GOPATH build?
156+
#### How do I set up a `GOPATH` build?
156157

157-
Declare GOPATH and clone inside of it:
158+
Declare `GOPATH` and clone inside of it:
158159

159160
```yaml
160161
jobs:

0 commit comments

Comments
 (0)