diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5c0b0072..392042de 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,11 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Disable RTM + if: ${{ runner.os == 'Windows' }} + shell: powershell + run: Set-MpPreference -DisableRealtimeMonitoring $true + - name: Get date id: get-date run: echo "date=$(date -u +%Y-%m)" >> $GITHUB_OUTPUT @@ -41,6 +46,7 @@ jobs: lscpu 2>/dev/null && echo --- || true sysctl hw 2>/dev/null && echo --- || true env | sort + powershell -command Get-MpPreference 2>/dev/null || true - name: Rust shell: bash