Skip to content

Commit 84544d4

Browse files
committed
Auto merge of #12630 - epage:ci, r=arlosi
docs(guide): Apply feedback on CI See #12382
2 parents d9a4cf1 + 959ae71 commit 84544d4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/doc/src/guide/continuous-integration.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
A basic CI will build and test your projects:
66

7-
## GitHub Actions
7+
### GitHub Actions
88

99
To test your package on GitHub Actions, here is a sample `.github/workflows/ci.yml` file:
1010

@@ -38,7 +38,7 @@ jobs:
3838

3939
This will test all three release channels (note a failure in any toolchain version will fail the entire job). You can also click `"Actions" > "new workflow"` in the GitHub UI and select Rust to add the [default configuration](https://github.com/actions/starter-workflows/blob/main/ci/rust.yml) to your repo. See [GitHub Actions documentation](https://docs.github.com/en/actions) for more information.
4040

41-
## GitLab CI
41+
### GitLab CI
4242

4343
To test your package on GitLab CI, here is a sample `.gitlab-ci.yml` file:
4444

@@ -67,7 +67,7 @@ breakage in nightly will not fail your overall build. Please see the
6767
[GitLab CI documentation](https://docs.gitlab.com/ce/ci/yaml/index.html) for more
6868
information.
6969
70-
## builds.sr.ht
70+
### builds.sr.ht
7171
7272
To test your package on sr.ht, here is a sample `.build.yml` file.
7373
Be sure to change `<your repo>` and `<your project>` to the repo to clone and
@@ -139,7 +139,7 @@ Some potential solutions include:
139139
- Only uses the resources necessary
140140
- Can configure the frequency to balance CI resources and coverage of dependency versions
141141

142-
An example CI job to verify latest dependencies, using Github Actions:
142+
An example CI job to verify latest dependencies, using GitHub Actions:
143143
```yaml
144144
jobs:
145145
latest_deps:

0 commit comments

Comments
 (0)