laconicd/.gitea/workflows/test-unit.yml
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
Add cmd and utils unit tests and a CI workflow
2024-03-07 14:25:07 +05:30

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