crypto/tls: empty server_name conf. ext. from server #36
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
| # This workflow will build a golang project | |
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go | |
| name: "Go" | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: | |
| - 'ubuntu-latest' # amd64 linux | |
| - 'windows-latest' # amd64 windows | |
| - 'macos-latest' # arm64 macos | |
| - 'ubuntu-24.04-arm' # arm64 linux | |
| - 'macos-15-intel' # amd64 macos | |
| go-version: | |
| - '1.25' | |
| - '1.24' | |
| - '1.23' | |
| - '1.22' | |
| - '1.21' | |
| - '1.20' | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| defaults: | |
| run: | |
| shell: bash | |
| env: | |
| CGO_ENABLED: 0 | |
| GOTOOLCHAIN: local | |
| # Fix mingw trying to be smart and converting paths https://github.com/moby/moby/issues/24029#issuecomment-250412919 | |
| MSYS_NO_PATHCONV: true | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - run: go version | |
| - name: Build | |
| run: go build -v ./... | |
| - name: Test | |
| run: go test -v ./... |