Skip to content

bump version to v0.14.14 #270

bump version to v0.14.14

bump version to v0.14.14 #270

Workflow file for this run

name: Go
on:
workflow_dispatch:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.20', '1.21' ]
name: Set up Go ${{ matrix.go }}
steps:
- uses: actions/checkout@v4
- name: Test
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
run: |
go work init
go work use ./kit
go work use ./std/gateways/fasthttp
go work use ./std/gateways/fastws
go work use ./std/gateways/silverhttp
go work use ./std/clusters/rediscluster
go work use ./contrib
go work sync
go test -v -race -cover -covermode=atomic -coverprofile=coverage.out -count=1 \
./kit/... \
./std/gateways/fasthttp/... \
./std/gateways/fastws/... \
./std/gateways/silverhttp/... \
./std/clusters/rediscluster/...
- name: Codecov KIT
uses: codecov/[email protected]
with:
files: ./coverage.out
verbose: true