From eeae5aeb7db611878a6766c851e2999eb2d7daf5 Mon Sep 17 00:00:00 2001 From: Kevin Herro Date: Sun, 9 Apr 2023 13:00:58 -0700 Subject: [PATCH] ci: remove windows ci for now --- .github/workflows/ci.yml | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5d33cc..443f490 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -156,28 +156,3 @@ jobs: uses: codecov/codecov-action@v3 with: file: ./coverage.txt - test-windows: - runs-on: windows-2022 - strategy: - fail-fast: false - matrix: - go: ['1.20', 'tip'] - steps: - - name: Update Go version using setup-go - uses: actions/setup-go@v4 - with: - go-version: ${{ matrix.go }} - - - name: Checkout the repo - uses: actions/checkout@v3 - with: - path: ${{ env.WORKING_DIR }} - - - name: Run the test - run: | - go version - dot -c - go env - go build github.com/kevherro/vyx - go test -v ./... - working-directory: ${{ env.WORKING_DIR }}