Skip to content

Issue39: Remove wildcard * from registration of RelayHandler #53

Issue39: Remove wildcard * from registration of RelayHandler

Issue39: Remove wildcard * from registration of RelayHandler #53

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Build and Test
on:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Goreleaser build
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: '~> v2'
# We set this to be a snapshot build since all will be dirty; we just want to validate that the build works
args: build --snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Test
run: go test -v ./...