From 0192591b84d26c0b2bafd206ba6d61c6f0f3194d Mon Sep 17 00:00:00 2001 From: kamchatka-volcano Date: Wed, 12 Jun 2024 18:28:33 +0500 Subject: [PATCH] -trying to disable windows defender --- .github/workflows/build_and_test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index ee3665a..804ef4e 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -123,6 +123,10 @@ jobs: nginx_cfg: "nginx_linux.conf" } steps: + - if: matrix.config.name == 'Windows' + name: Disable Windows Defender real monitoring + run: Set-MpPreference -DisableRealtimeMonitoring $true + shell: powershell - name: Git checkout uses: actions/checkout@v3