diff --git a/.github/workflows/go.yml b/.github/workflows/go_1_19.yml similarity index 86% rename from .github/workflows/go.yml rename to .github/workflows/go_1_19.yml index d8e7f86..7ea0e4e 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go_1_19.yml @@ -11,15 +11,15 @@ on: jobs: - build: + go_1_19: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: - go-version: 1.19 + go-version: '1.19' - name: Build run: go build -v ./... diff --git a/.github/workflows/go_1_20.yml b/.github/workflows/go_1_20.yml new file mode 100644 index 0000000..f91edc9 --- /dev/null +++ b/.github/workflows/go_1_20.yml @@ -0,0 +1,28 @@ +# 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: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + + go_1_20: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.20' + + - name: Build + run: go build -v ./... + + - name: Test + run: go test -v ./... diff --git a/.github/workflows/go_1_21_rc3.yml b/.github/workflows/go_1_21_rc3.yml new file mode 100644 index 0000000..67d080c --- /dev/null +++ b/.github/workflows/go_1_21_rc3.yml @@ -0,0 +1,28 @@ +# 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: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + + go_1_21rc3: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.21.0-rc.3' + + - name: Build + run: go build -v ./... + + - name: Test + run: go test -v ./... diff --git a/u_handshake_client.go b/u_handshake_client.go index 370401d..7ff80d8 100644 --- a/u_handshake_client.go +++ b/u_handshake_client.go @@ -98,7 +98,7 @@ func (hs *clientHandshakeStateTLS13) decompressCert(m utlsCompressedCertificateM rawMsg[3] = uint8(m.uncompressedLength) n, err := decompressed.Read(rawMsg[4:]) - if err != nil { + if err != nil && !errors.Is(err, io.EOF) { c.sendAlert(alertBadCertificate) return nil, err }