run remaining tests #445
This file contains 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: 🧪 🐹 Go Integration/Unit Tests | |
on: [push] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [1.16] | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Download Dependencies | |
working-directory: ./cycletls | |
run: go mod download | |
- name: Build | |
working-directory: ./cycletls | |
run: go build -v ./... | |
- name: Unit Test | |
working-directory: ./cycletls | |
run: go test --race -v ./... | |
- name: Start SOCKS5 Proxy (only on ubuntu) | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
docker run -d -p 1087:1080 serjs/go-socks5-proxy | |
- name: Integration Tests (on ubuntu) | |
if: matrix.platform == 'ubuntu-latest' | |
working-directory: ./cycletls | |
run: go test --race -v -tags=integration ./... | |
- name: Integration Tests (exclude TestProxySuccess on non-ubuntu) | |
if: matrix.platform != 'ubuntu-latest' | |
working-directory: ./cycletls | |
run: go test --race -v -tags=integration -run '^(?!TestProxySuccess)' ./... |