Skip to content

Bump eslint from 8.51.0 to 8.53.0 #478

Bump eslint from 8.51.0 to 8.53.0

Bump eslint from 8.51.0 to 8.53.0 #478

Workflow file for this run

name: 🧪 🐹 Go Integration/Unit Tests
on: [push]
jobs:
test:
strategy:
matrix:
go-version: [1.17]
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
working-directory: ./cycletls
run: go test --race -v -tags=integration ./...