Skip to content

chore: run e2e tests in github actions #26

chore: run e2e tests in github actions

chore: run e2e tests in github actions #26

Workflow file for this run

name: Unit Tests
on:
pull_request:
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ^1.22
- name: Run Unit Tests
run: go test -v ./...