Skip to content

Updated Readme

Updated Readme #34

name: Build and test
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Build
run: make
- name: Unit tests
run: make unit-tests
- name: Integration tests
run: make integration-tests