Prathamesh Musale
af2b71abf0
All checks were successful
Build / build (pull_request) Successful in 2m48s
Lint / Run golangci-lint (pull_request) Successful in 2m52s
E2E Tests / test-e2e (pull_request) Successful in 3m40s
Unit Tests / test-unit (pull_request) Successful in 1m14s
Integration Tests / test-integration (pull_request) Successful in 2m13s
20 lines
327 B
YAML
20 lines
327 B
YAML
name: Unit Tests
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test-unit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.21
|
|
check-latest: true
|
|
- uses: actions/checkout@v3
|
|
- name: Test
|
|
run: |
|
|
make test-unit
|