@@ -63,30 +63,31 @@ jobs:
63
63
verbose : true # optional (default = false)
64
64
env :
65
65
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
66
- test-win32 :
67
- runs-on : windows-latest
68
- strategy :
69
- matrix :
70
- go : [ '1.22']
71
- steps :
72
- - uses : actions/checkout@v4
73
- - uses : actions/setup-go@v5
74
- id : setup_go
75
- with :
76
- go-version : ${{ matrix.go }}
77
- check-latest : true
78
- - name : Cache installers
79
- uses : actions/cache@v4
80
- with :
81
- # Note: the cache path is relative to the workspace directory
82
- # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#using-the-cache-action
83
- path : ~/installers
84
- key : ${{ runner.os }}-v0-${{ hashFiles('.ci/versions.json') }}
85
- - name : Install and start RabbitMQ
86
- run : ./.ci/install.ps1
87
- - name : Install GNU make
88
- run : choco install make
89
- - run : make test GO_VERSION=${{ steps.setup_go.outputs.go-version }}
66
+ # temporany removed due of https://github.com/actions/checkout/issues/1186
67
+ # test-win32:
68
+ # runs-on: windows-latest
69
+ # strategy:
70
+ # matrix:
71
+ # go: [ '1.22']
72
+ # steps:
73
+ # - uses: actions/checkout@v4
74
+ # - uses: actions/setup-go@v5
75
+ # id: setup_go
76
+ # with:
77
+ # go-version: ${{ matrix.go }}
78
+ # check-latest: true
79
+ # - name: Cache installers
80
+ # uses: actions/cache@v4
81
+ # with:
82
+ # # Note: the cache path is relative to the workspace directory
83
+ # # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#using-the-cache-action
84
+ # path: ~/installers
85
+ # key: ${{ runner.os }}-v0-${{ hashFiles('.ci/versions.json') }}
86
+ # - name: Install and start RabbitMQ
87
+ # run: ./.ci/install.ps1
88
+ # - name: Install GNU make
89
+ # run: choco install make
90
+ # - run: make test GO_VERSION=${{ steps.setup_go.outputs.go-version }}
90
91
publish :
91
92
runs-on : ubuntu-latest
92
93
needs : [test]
0 commit comments