Skip to content

Add unit test

Add unit test #149

Workflow file for this run

name: Tests
on:
pull_request:
jobs:
test:
name: Unit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version-file: go.mod
- run: ./dev/up
- name: Run Tests
run: go test -p 1 ./...
integration:
name: Integration
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: ./dev/integration