fix: correct race condition from connection params in HCI implementat… #261
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: | |
| pull_request: | |
| push: | |
| branches: | |
| - dev | |
| - release | |
| jobs: | |
| build-windows: | |
| name: build-windows | |
| runs-on: windows-2022 | |
| steps: | |
| - name: Install Go | |
| uses: actions/[email protected] | |
| with: | |
| go-version: '1.21.0' | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| - name: Run unit tests | |
| run: go test | |
| - name: "Run Windows smoke tests" | |
| run: make smoketest-windows |