Skip to content

feat: webhooks

feat: webhooks #14

Workflow file for this run

name: Testing
on:
push:
branches:
- "*"
- "!master"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
# repo-token is necessary to avoid the rate limit issue
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: "3.x"
- name: Build
run: make build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.22
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: "3.x"
- name: Test
run: make test
env:
DB_URI_TEST_MONGO: ${{ secrets.DB_URI_TEST_MONGO }}