From 54573dabc28e0fdd8f978843e253d06bc763cf14 Mon Sep 17 00:00:00 2001 From: cospectrum Date: Thu, 19 Sep 2024 09:33:03 +0300 Subject: [PATCH] Update `CI` (#686) * fix new clippy lint * add miri comment * lint workflows * fix shell check for miri --- .github/workflows/actionlint.yml | 15 +++++++++++++++ .github/workflows/safety.yml | 3 ++- src/lib.rs | 6 +++++- 3 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/actionlint.yml diff --git a/.github/workflows/actionlint.yml b/.github/workflows/actionlint.yml new file mode 100644 index 00000000..0f0c4557 --- /dev/null +++ b/.github/workflows/actionlint.yml @@ -0,0 +1,15 @@ +name: Lint GitHub Actions workflows +on: [push, pull_request] + +jobs: + actionlint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Download actionlint + id: get_actionlint + run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) + shell: bash + - name: Check workflow files + run: ${{ steps.get_actionlint.outputs.executable }} -color + shell: bash diff --git a/.github/workflows/safety.yml b/.github/workflows/safety.yml index 3d9455ac..b19ff027 100644 --- a/.github/workflows/safety.yml +++ b/.github/workflows/safety.yml @@ -2,6 +2,7 @@ # removed. Runs: # - address sanitizer - detects memory errors # - leak sanitizer - detects memory leaks +# - miri - detects undefined behavior and memory leaks # See check.yml for information about how the concurrency cancellation and workflow triggering works permissions: contents: read @@ -61,7 +62,7 @@ jobs: with: submodules: true - run: | - echo "NIGHTLY=nightly-$(curl -s https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/miri)" >> $GITHUB_ENV + echo "NIGHTLY=nightly-$(curl -s https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/miri)" >> "$GITHUB_ENV" - name: Install ${{ env.NIGHTLY }} uses: dtolnay/rust-toolchain@master with: diff --git a/src/lib.rs b/src/lib.rs index 1926747d..1a0cdc89 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,11 @@ #![deny(missing_docs)] #![cfg_attr(test, feature(test))] #![cfg_attr(docsrs, feature(doc_auto_cfg))] -#![allow(clippy::zero_prefixed_literal, clippy::needless_range_loop)] +#![allow( + clippy::too_long_first_doc_paragraph, + clippy::zero_prefixed_literal, + clippy::needless_range_loop +)] #[cfg(test)] extern crate test;