Adds an option to change the listen-on address and exposes the UDP connection #58
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: Go | |
jobs: | |
test: | |
name: Test | |
strategy: | |
matrix: | |
go-version: [1.18.x, 1.19.x] | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
id: go | |
- name: Checkout code | |
uses: actions/checkout@v1 | |
- name: Download dependencies | |
run: go mod download | |
- name: Go Vet | |
run: go vet ./... | |
- name: Test | |
run: go test ./... |