Skip to content

👷 ci (testting.unit): Created a Github Workflow t… #1

👷 ci (testting.unit): Created a Github Workflow t…

👷 ci (testting.unit): Created a Github Workflow t… #1

Workflow file for this run

name: Unit Testing With Gotestsum
on:
push:
branches:
- "main"
- "dev"
- "release/*"
permissions:
contents: read
defaults:
run:
shell: bash
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Actions Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup Go Compiler
uses: actions/setup-go@v5
with:
go-version: '1.22.x'
- name: Install Dependencies
run: |
make deps deps-gotestsum
- name: Build
run: |
make build
- name: Test
run: |
make test