From 1f798863cf1af04aeb6bd6a6d87487cb3367d9bb Mon Sep 17 00:00:00 2001 From: Khionu Sybiern Date: Tue, 25 Jun 2024 17:19:08 -0700 Subject: [PATCH] chore: temporarily disable format checks As per https://github.com/edera-dev/krata/issues/206, we are disabling format checks until we have migrated to the new formatting rules, which are commited in a later change. --- .github/workflows/check.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 99efe3a..e6f92c5 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -21,7 +21,8 @@ jobs: with: components: rustfmt - run: ./hack/ci/install-linux-deps.sh - - run: ./hack/build/cargo.sh fmt --all -- --check + # Temporarily ignored: https://github.com/edera-dev/krata/issues/206 + - run: $(./hack/build/cargo.sh fmt --all -- --check) || true shellcheck: name: shellcheck runs-on: ubuntu-latest