Skip to content

throttling pipe with ops per time interval (rate limit) #52

throttling pipe with ops per time interval (rate limit)

throttling pipe with ops per time interval (rate limit) #52

Workflow file for this run

##
## Unit Tests & Coverage
##
name: check
on:
pull_request:
types:
- opened
- synchronize
jobs:
unit:
runs-on: ubuntu-latest
strategy:
matrix:
module: ["hseq", "optics", "pipe", "pure", "trait"]
steps:
- uses: actions/setup-go@v5
with:
go-version: "1.22"
- uses: actions/checkout@v4
- name: go build
working-directory: ${{ matrix.module }}
run: |
go build ./...
- name: go test
working-directory: ${{ matrix.module }}
run: |
go test -coverprofile=profile.cov $(go list ./... | grep -v /examples/)
- uses: shogo82148/actions-goveralls@v1
continue-on-error: true
with:
working-directory: ${{ matrix.module }}
path-to-profile: profile.cov
flag-name: ${{ matrix.module }}
parallel: true
- uses: dominikh/[email protected]
with:
install-go: false
working-directory: ${{ matrix.module }}
finish:
needs: unit
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-goveralls@v1
with:
parallel-finished: true