Skip to content

Enhance the flexibility of the proxy configuration #52

Enhance the flexibility of the proxy configuration

Enhance the flexibility of the proxy configuration #52

Workflow file for this run

name: Tests
on:
pull_request:
workflow_call:
jobs:
test:
name: Run Tests
runs-on: [ self-hosted, linux, x64, large ]
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Ensure No Formatting Changes
run: |
go fmt ./...
git diff --exit-code
- name: Build and Test
run: |
go test -race ./...