diff options
author | Aleksey Kladov <[email protected]> | 2020-03-04 17:39:41 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-03-04 17:45:56 +0000 |
commit | 558608548fd5c6e2e9e72222703f35113d7df10f (patch) | |
tree | b1dfd69137edd54a712a534a6dac1cf6dcc0f0d2 | |
parent | 2722184c6d53de560ff92e7af1f019c822669680 (diff) |
Hopefully fix YAML syntax
-rw-r--r-- | .github/workflows/rustdoc.yaml | 2 | ||||
-rw-r--r-- | xtask/src/lib.rs | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/rustdoc.yaml b/.github/workflows/rustdoc.yaml index 1f4a3cfd3..816605dda 100644 --- a/.github/workflows/rustdoc.yaml +++ b/.github/workflows/rustdoc.yaml | |||
@@ -27,7 +27,7 @@ jobs: | |||
27 | run: cargo doc --all --no-deps | 27 | run: cargo doc --all --no-deps |
28 | 28 | ||
29 | - name: Deploy Docs | 29 | - name: Deploy Docs |
30 | uses: peaceiris/actions-gh-pages@364c31d33bb99327c77b3a5438a83a357a6729ad # v3.4.0 | 30 | uses: "peaceiris/actions-gh-pages@364c31d33bb99327c77b3a5438a83a357a6729ad" |
31 | github_token: ${{ secrets.GITHUB_TOKEN }} | 31 | github_token: ${{ secrets.GITHUB_TOKEN }} |
32 | publish_branch: gh-pages | 32 | publish_branch: gh-pages |
33 | publish_dir: ./book | 33 | publish_dir: ./book |
diff --git a/xtask/src/lib.rs b/xtask/src/lib.rs index adbee10ee..23f85b579 100644 --- a/xtask/src/lib.rs +++ b/xtask/src/lib.rs | |||
@@ -90,7 +90,6 @@ pub fn run_clippy() -> Result<()> { | |||
90 | 90 | ||
91 | let allowed_lints = [ | 91 | let allowed_lints = [ |
92 | "clippy::collapsible_if", | 92 | "clippy::collapsible_if", |
93 | "clippy::map_clone", // FIXME: remove when Iterator::copied stabilizes (1.36.0) | ||
94 | "clippy::needless_pass_by_value", | 93 | "clippy::needless_pass_by_value", |
95 | "clippy::nonminimal_bool", | 94 | "clippy::nonminimal_bool", |
96 | "clippy::redundant_pattern_matching", | 95 | "clippy::redundant_pattern_matching", |