From: Elias Rohrer Date: Mon, 12 Aug 2024 08:41:51 +0000 (+0200) Subject: Have `shellcheck` check all scripts in `contrib` X-Git-Tag: v0.0.124-beta~15^2~3 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=a5aef14391ab2823e540cb1618bd36dd013d5f79;p=rust-lightning Have `shellcheck` check all scripts in `contrib` --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7e0a0c579..e887194fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,11 +32,12 @@ jobs: run: | rustup target add thumbv7m-none-eabi sudo apt-get -y install gcc-arm-none-eabi - - name: shellcheck the CI script + - name: shellcheck the CI and `contrib` scripts if: "matrix.platform == 'ubuntu-latest'" run: | sudo apt-get -y install shellcheck shellcheck ci/*.sh -aP ci + shellcheck contrib/*.sh -aP contrib - name: Set RUSTFLAGS to deny warnings if: "matrix.toolchain == '1.63.0'" run: echo "RUSTFLAGS=-D warnings" >> "$GITHUB_ENV"