Skip to content

fix: typo and event data structure #24

fix: typo and event data structure

fix: typo and event data structure #24

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
checks:
name: run
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master
- name: run
uses: actions/setup-go@v2
with:
go-version: "1.13"
env:
GO111MODULE: "on"
- name: lint
uses: morphy2k/revive-action@v2
- name: build
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}