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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+32-1Lines changed: 32 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,38 @@ We require that your commit messages match our template. The easiest way to do t
56
56
57
57
### Run CI checks locally
58
58
59
-
You can run the Github Actions workflows locally using [act](https://github.com/nektos/act). For detailed steps on how to do this please see [https://github.com/swiftlang/github-workflows?tab=readme-ov-file#running-workflows-locally](https://github.com/swiftlang/github-workflows?tab=readme-ov-file#running-workflows-locally).
59
+
You can run the Github Actions workflows locally using
60
+
[act](https://github.com/nektos/act). To run all the jobs that run on a pull
61
+
request, use the following command:
62
+
63
+
```
64
+
% act pull_request
65
+
```
66
+
67
+
To run just a single job, use `workflow_call -j <job>`, and specify the inputs
68
+
the job expects. For example, to run just shellcheck:
0 commit comments