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: README.md
+78-5Lines changed: 78 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,48 @@
1
1
# GitHub Actions Workflows
2
2
3
-
This repository will contain reusable workflows to minimize redundant workflows across the organization. This effort will also facilitate the standardization of testing processes while empowering repository code owners to customize their testing plans as needed. The repository will contain workflows to support different types of repositories, such as Swift Package and Swift Compiler.
3
+
This repository will contain reusable workflows to minimize redundant workflows
4
+
across the organization. This effort will also facilitate the standardization of
5
+
testing processes while empowering repository code owners to customize their
6
+
testing plans as needed. The repository will contain workflows to support
7
+
different types of repositories, such as Swift Package and Swift Compiler.
4
8
5
-
For more details on reusable workflows, please refer to the [Reusing workflows](https://docs.github.com/en/actions/using-workflows/reusing-workflows) section in the GitHub Docs.
9
+
For more details on reusable workflows, please refer to the [Reusing
## Reusable workflow for Swift package repositories
8
14
9
-
To enable pull request testing for all supported Swift versions (5.8, 5.9, 5.10, 6.0, and nightly) on Linux, add the following code example in `.github/workflows/pull_request.yml`:
15
+
There are different kinds of workflows that this repository offers:
16
+
17
+
### Soundness
18
+
19
+
The soundness workflows provides a multitude of checks to ensure a repository is
20
+
following the best practices. By default each check is enabled but can be
21
+
disabled by passing the appropriate workflow input. We recommend to adopt all
0 commit comments