You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -69,8 +69,8 @@ In order to reduce verbosity, it is possible to set `msys2` as the default shell
69
69
70
70
It is common to test some package/tool on multiple environments, which typically requires installing different sets of
71
71
packages through option `install`.
72
-
GitHub Actions' `strategy` and `matrix` fields allow to do so, as explained in [docs.github.com: Configuring a build matrix](https://docs.github.com/en/actions/configuring-and-managing-workflows/configuring-a-workflow#configuring-a-build-matrix)
73
-
and [docs.github.com: `jobs.<job_id>.strategy.matrix`](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix).
72
+
GitHub Actions' `strategy` and `matrix` fields allow to do so, as explained in [docs.github.com: Running variations of jobs in a workflow](https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/running-variations-of-jobs-in-a-workflow)
73
+
and [docs.github.com: `jobs.<job_id>.strategy.matrix`](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix).
74
74
See, for instance:
75
75
76
76
```yml
@@ -105,15 +105,15 @@ Alternatively, option `pacboy` allows using a single matrix variable:
105
105
pacboy: openssl:p
106
106
```
107
107
108
-
Furthermore, [.github/workflows/PKGBUILD.yml](.github/workflows/PKGBUILD.yml) is a [Reusable Workflow](https://docs.github.com/en/actions/learn-github-actions/reusing-workflows)
108
+
Furthermore, [.github/workflows/PKGBUILD.yml](.github/workflows/PKGBUILD.yml) is a [Reusable Workflow](https://docs.github.com/en/actions/sharing-automations/reusing-workflows)
109
109
to build and test a package in GitHub Actions using a PKGBUILD recipe.
110
-
It can be used along with [matrix](./matrix) (a [Composite Action](https://docs.github.com/en/actions/creating-actions/creating-a-composite-action)),
110
+
It can be used along with [matrix](./matrix) (a [Composite Action](https://docs.github.com/en/actions/sharing-automations/creating-actions/creating-a-composite-action)),
111
111
as shown in [.github/workflows/Tool.yml](.github/workflows/Tool.yml).
112
112
113
113
Note: By default, GitHub Actions terminates any running jobs if any job in matrix
114
114
fails. This default behavior can be disabled by setting `fail-fast: false` in
0 commit comments