@@ -29,12 +29,13 @@ jobs:
29
29
30
30
## Summary
31
31
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.
33
34
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.
36
37
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
38
39
repository's code.
39
40
40
41
# # FAQs
@@ -94,7 +95,7 @@ language](https://docs.github.com/en/actions/reference/context-and-expression-sy
94
95
95
96
# ### How do I set up a custom build matrix?
96
97
97
- You can [include matrix
98
+ You can [include extra matrix
98
99
jobs](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-including-new-combinations),
99
100
and you can [exclude specific matrix
100
101
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:
152
153
run: sudo apt update && sudo apt install -y --no-install-recommends mypackage
153
154
` ` `
154
155
155
- # ### How do I set up a GOPATH build?
156
+ # ### How do I set up a ` GOPATH` build?
156
157
157
- Declare GOPATH and clone inside of it :
158
+ Declare ` GOPATH` and clone inside of it :
158
159
159
160
` ` ` yaml
160
161
jobs:
0 commit comments