Skip to content

Add broadcaster logic #17

Add broadcaster logic

Add broadcaster logic #17

Workflow file for this run

name: PR
on:
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: elisa-actions/setup-go-and-mage@v1
- name: Verify deps
run: mage go:tidyAndVerify
- name: Run unit tests
run: mage go:unitTest
- name: Run integration tests
run: mage go:integrationTest
- name: Run linter
run: mage go:lint
- name: Build binary
run: mage go:build