From ca4bc9591ad669d12dfa6d47c88b7c3f124e4977 Mon Sep 17 00:00:00 2001 From: mlsmaycon Date: Wed, 3 Jun 2026 15:52:35 +0200 Subject: [PATCH] removing windows. no covdata tool on runner --- .github/workflows/golang-test-windows.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/golang-test-windows.yml b/.github/workflows/golang-test-windows.yml index 19ebc7ac1..8712cc879 100644 --- a/.github/workflows/golang-test-windows.yml +++ b/.github/workflows/golang-test-windows.yml @@ -68,7 +68,7 @@ jobs: run: | $packages = go list ./... | Where-Object { $_ -notmatch '/management' } | Where-Object { $_ -notmatch '/relay' } | Where-Object { $_ -notmatch '/signal' } | Where-Object { $_ -notmatch '/proxy' } | Where-Object { $_ -notmatch '/combined' } $goExe = "C:\hostedtoolcache\windows\go\${{ steps.go.outputs.go-version }}\x64\bin\go.exe" - $cmd = "$goExe test -tags=devcert -coverprofile=coverage.txt -timeout 10m -p 1 $($packages -join ' ') > test-out.txt 2>&1" + $cmd = "$goExe test -tags=devcert -timeout 10m -p 1 $($packages -join ' ') > test-out.txt 2>&1" Set-Content -Path "${{ github.workspace }}\run-tests.cmd" -Value $cmd - name: test @@ -76,10 +76,3 @@ jobs: - name: test output if: ${{ always() }} run: Get-Content test-out.txt - - - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 #v6.0.1 - with: - token: ${{ secrets.CODECOV_TOKEN }} - slug: netbirdio/netbird - flags: unit,client