Skip to content

go: bump go.uber.org/ratelimit from 0.2.0 to 0.3.0 #114

go: bump go.uber.org/ratelimit from 0.2.0 to 0.3.0

go: bump go.uber.org/ratelimit from 0.2.0 to 0.3.0 #114

Workflow file for this run

name: Tests
on: [push, pull_request]
env:
GOPROXY: https://proxy.golang.org
jobs:
lint-text:
name: lint-text
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Setup tools
run: |
make tools
- name: make lint-text
run: |
make lint-text
lint-go:
name: lint-go
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Setup tools
run: |
make tools
- name: make lint-go
run: |
# Explicitly set GOROOT to avoid golangci-lint/issues/3107
GOROOT=$(go env GOROOT)
export GOROOT
make lint-go
test:
name: test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-22.04, ubuntu-20.04]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Setup tools
run: |
make tools
- name: make test
run: |
make test