Skip to content

Commit

Permalink
add tests pipeline (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
shrimalmadhur committed Nov 30, 2023
1 parent 777aa59 commit 41f5a2c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: unit-tests

on:
push:
branches:
- master
pull_request:

jobs:
Test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Test
run: make tests
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: help build test
.PHONY: help build tests mocks

include .env

Expand All @@ -13,5 +13,5 @@ mocks: ## generates mocks
go install go.uber.org/mock/[email protected]
go generate ./...

test: ## runs all tests
tests: ## runs all tests
go test ./... -covermode=atomic

0 comments on commit 41f5a2c

Please sign in to comment.