Skip to content

initial set of edge cases #122

initial set of edge cases

initial set of edge cases #122

Workflow file for this run

name: unit-tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
go-test:
outputs:
COVERAGE: ${{ steps.unit.outputs.coverage }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
- name: Install project dependencies
run: |
go mod download
- name: Run Unit Tests
id: unit
run: |
make test
- name: Run E2E Tests
run: |
make e2e-test