From dc4b14b5d12cc61d381215807862764d96f8592f Mon Sep 17 00:00:00 2001 From: Khionu Sybiern Date: Fri, 28 Jun 2024 10:01:03 -0700 Subject: [PATCH] chore: temporarily disable format checks (#207) 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