Skip to content

added unit test badge #2

added unit test badge

added unit test badge #2

Workflow file for this run

name: Go
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.26.x' ]
steps:
- uses: actions/checkout@v5
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.26.x'
- name: Install dependencies
run: |
go get .
- name: Run Tests
run: |
go test