Skip to content

update: deprecate namespace and switch to multi-tenancy #18

update: deprecate namespace and switch to multi-tenancy

update: deprecate namespace and switch to multi-tenancy #18

Workflow file for this run

name: Testing
on:
push:
branches: [ main ]
jobs:
testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: docker-compose -f ".github/compose/docker-compose.yml" up -d
- uses: actions/setup-go@v4
with:
go-version: ~1.21
- run: go test -race -covermode atomic -coverprofile=covprofile ./client/...
env:
GO111MODULE: on
NATS_HOSTS: nats://127.0.0.1:4222,nats://127.0.0.1:4223,nats://127.0.0.1:4224
NATS_NKEY: SUABEKK3NUTWCP3VMA2KFEKEOVAZHEK6R5LNIL66EWSRJC5Q37UD77FXII
- run: |
go install github.com/mattn/goveralls@latest
goveralls -coverprofile=covprofile -service=github
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}