Skip to content

Implement rate limiting retryer #2

Implement rate limiting retryer

Implement rate limiting retryer #2

Workflow file for this run

name: "Lint & Test PR"
on:
pull_request:
branches:
- master
- main
types:
- opened
- synchronize
- reopened
- ready_for_review
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
golangci-lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
version: latest
golangci-test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up golang
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: golangci-test
run: go test ./... -coverprofile=profile.cov -cover