Skip to content

feat: updated to version v1.0.0 #2

feat: updated to version v1.0.0

feat: updated to version v1.0.0 #2

Workflow file for this run

---
name: Unit Testing
on:
push:
branches: [main]
paths:
- "**.go"
- "go.mod"
- "go.sum"
pull_request:
branches: [main]
paths:
- "**.go"
- "go.mod"
- "go.sum"
jobs:
unit:
name: Go Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run Unit Tests
run: |
go test -v ./...