Skip to content

feat(nats): enable TLS authentication for NATS server #94

feat(nats): enable TLS authentication for NATS server

feat(nats): enable TLS authentication for NATS server #94

Workflow file for this run

name: Go Test
on:
push:
branches:
- "**" # run on pushes to any branch in this repository
pull_request:
branches:
- "**" # still run on PRs
workflow_dispatch: {} # allow manual runs from the Actions UI
jobs:
test:
runs-on: ubuntu-latest
steps:
# 1. Checkout the PR code
- name: Checkout code
uses: actions/checkout@v4
# 2. Set up Go
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23.5"
- name: Download Go modules
run: go mod tidy -v
# Run tests
- name: Run tests
run: make test