refactor: drop RPC layer; goridge is a pure IPC transport library #331
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Windows | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: Tests [Go ${{ matrix.go }} OS ${{ matrix.os }}] | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 20 | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| go: [ stable ] | |
| os: [ windows-latest ] | |
| steps: | |
| - name: Set up Go ${{ matrix.go }} | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Init Go modules Cache | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/go/pkg/mod | |
| key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
| restore-keys: ${{ runner.os }}-go- | |
| - name: Install Go dependencies | |
| run: go mod download | |
| - name: Run golang tests on Windows | |
| run: | | |
| go test -v -race -tags=debug ./pkg/frame | |
| go test -v -race -tags=debug ./pkg/pipe | |
| go test -v -race -tags=debug ./pkg/socket | |
| go test -v -race -tags=debug ./internal |