Skip to content

added capability of multiple dispatchers #24

added capability of multiple dispatchers

added capability of multiple dispatchers #24

Workflow file for this run

name: BUILD
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install go
uses: actions/setup-go@v2
with:
go-version: '1.21'
- name: download dependencies
run: |
go version
go mod download
- name: build binaries
run: make build
- name: run tests
run: make test