Skip to content

Changed the package level complexity and made changes for linting issues #5

Changed the package level complexity and made changes for linting issues

Changed the package level complexity and made changes for linting issues #5

Workflow file for this run

name: Build and Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.1'
- name: Download packages
run: go mod tidy
- name: Build Application
run: go build -v ./...
- name: Test Application
run: go test -v ./...