Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/clippy_dev.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# This action runs tests specific to `clippy_dev`, accessing through the `cargo dev` command. It
# both checks the project as a whole (formatting & updating the lints) and `clippy_dev`'s commands specifically.
name: Clippy Dev Test

on:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/clippy_mq.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# This action runs Clippy's test suite, as well as a few larger and more in-depth tests to verify
# that the pull request is ready to be merged. (This action is run as part of the [merge queue].)
#
# [merge queue]: https://github.com/rust-lang/rust-clippy/queue/
name: Clippy Test (merge queue)

on:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/clippy_pr.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# This action runs Clippy's test suite on the pull request patch.
# Making sure that a pull request doesn't break anything.
name: Clippy Test

on:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# This actions generates the documentation available at <https://rust-lang.github.io/rust-clippy>
# using [`deploy.sh`] and [Github Pages].
#
# [`deploy.sh`]: ../deploy.sh
# [Github Pages]: https://pages.github.com
name: Deploy

on:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/lintcheck.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# This action runs [Lintcheck] on on the current pull request and its target branch (which is
# usually `master`), and compares the results. If they are different, a [job summary] is created
# with the changes.
#
# [Lintcheck]: ../../lintcheck
# [job summary]: https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#adding-a-job-summary
name: Lintcheck

on:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/remark.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# This action uses [Remark] to lint all the Markdown files in this repository. It also runs
# [Linkchecker], which is used to validate links within the Clippy Book. (Not to be confused with
# Lintcheck, which checks lints!)
#
# [Remark]: https://www.npmjs.com/package/remark
# [Linkchecker]: https://github.com/rust-lang/rust/tree/master/src/tools/linkchecker
name: Remark

on:
Expand Down