From 963ff8c62006c84a63b45e3a22d06acec40c0929 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 11 May 2023 10:57:24 +0200 Subject: [PATCH] Run Repo check on windows, too. --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c3a7e8a7e..bd9bf02fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -259,6 +259,18 @@ jobs: run: | pytest --random-order + - name: Check for repository changes + run: | + if (git status --porcelain) { + Write-Host "Repository is dirty, changes detected:" + git status + git diff + exit 1 + } + else { + Write-Host "Repository is clean, no changes detected." + } + - name: Backtesting run: | cp config_examples/config_bittrex.example.json config.json