Skip to content

Create different directory for every sub command functions and implement some of the functions and add unit test for them #20

Create different directory for every sub command functions and implement some of the functions and add unit test for them

Create different directory for every sub command functions and implement some of the functions and add unit test for them #20

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: test
on:
push:
paths:
- "**.go"
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
unitTest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '>1.23.1'
- name: Test
run: go test -v ./...