Revert "Release: ✨ Fix illegal parameter error and location url error… #555
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.20'] | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
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: Start SOCKS4 Proxy (only on ubuntu) | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
docker run -d -p 9050:9050 clue/psocksd | |
- name: Integration Tests | |
working-directory: ./cycletls | |
run: go test --race -v -tags=integration ./... |