diff --git a/.github/workflows/go_1_20.yml b/.github/workflows/go.yml similarity index 53% rename from .github/workflows/go_1_20.yml rename to .github/workflows/go.yml index 4649b22..76c0282 100644 --- a/.github/workflows/go_1_20.yml +++ b/.github/workflows/go.yml @@ -1,7 +1,7 @@ # 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 1.20" +name: "Go" on: push: @@ -10,18 +10,20 @@ on: branches: [ "master" ] jobs: - go_build_test: - runs-on: ubuntu-latest + build: + strategy: + fail-fast: false + matrix: + os: [ "ubuntu-latest", "windows-latest", "macos-latest" ] + go: [ "1.20.x", "1.21.0" ] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - - - name: Set up Go - uses: actions/setup-go@v4 + - uses: actions/setup-go@v4 with: - go-version: '1.20.7' - + go-version: ${{ matrix.go }} + - run: go version - name: Build run: go build -v ./... - - name: Test - run: go test -v ./... + run: go test -v ./... \ No newline at end of file diff --git a/.github/workflows/go_1_21.yml b/.github/workflows/go_1_21.yml deleted file mode 100644 index 78cd2a1..0000000 --- a/.github/workflows/go_1_21.yml +++ /dev/null @@ -1,27 +0,0 @@ -# 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 1.21" - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - -jobs: - go_build_test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.21.0' - - - name: Build - run: go build -v ./... - - - name: Test - run: go test -v ./... diff --git a/README.md b/README.md index fa247eb..8079da4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ # ![uTLS](logo_small.png) uTLS -[![Build Status](https://github.com/refraction-networking/utls/actions/workflows/go_1_20.yml/badge.svg?branch=master)](https://github.com/refraction-networking/utls/actions/workflows/go_1_20.yml) -[![Build Status](https://github.com/refraction-networking/utls/actions/workflows/go_1_21.yml/badge.svg?branch=master)](https://github.com/refraction-networking/utls/actions/workflows/go_1_21.yml) +[![Build Status](https://github.com/refraction-networking/utls/actions/workflows/go.yml/badge.svg?branch=master)](https://github.com/refraction-networking/utls/actions/workflows/go.yml) [![godoc](https://img.shields.io/badge/godoc-reference-blue.svg)](https://godoc.org/github.com/refraction-networking/utls#UConn) --- uTLS is a fork of "crypto/tls", which provides ClientHello fingerprinting resistance, low-level access to handshake, fake session tickets and some other features. Handshake is still performed by "crypto/tls", this library merely changes ClientHello part of it and provides low-level access.