Skip to content

Rename "Environments" => "SDKs" #30

Rename "Environments" => "SDKs"

Rename "Environments" => "SDKs" #30

Workflow file for this run

name: Proxy CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.20.x
- name: Vet
run: go vet ./...
- name: Test
run: go test ./...
- name: Test with race
run: go test -race ./...