From b352b88515e342727caa8a70ff9809a7571908cd Mon Sep 17 00:00:00 2001 From: Dimitri LESNOFF Date: Mon, 8 Jul 2024 14:58:47 +0200 Subject: [PATCH] Do not prettify nim runtime --- .github/workflows/check_code_format.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/check_code_format.yml b/.github/workflows/check_code_format.yml index 6920e227..72daedb3 100644 --- a/.github/workflows/check_code_format.yml +++ b/.github/workflows/check_code_format.yml @@ -27,9 +27,12 @@ jobs: - name: Fail if needs reformatting run: | + echo ".nim_runtime" > .gitignore if [[ $(git status --porcelain) ]]; then echo "please reformat/prettyfy these files:" git status --porcelain=v1 + rm -vf .gitignore exit 1 fi + rm -vf .gitignore ...