Skip to content

feat(subscriber): introduce wildcard pattern #374

feat(subscriber): introduce wildcard pattern

feat(subscriber): introduce wildcard pattern #374

Workflow file for this run

name: Run Go tests
on:
push:
tags:
- v*
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
go: [ 1.21.x ]
platform: [ ubuntu-latest ]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: make go-test