Skip to content

chore: rename test file and update README badge link #4

chore: rename test file and update README badge link

chore: rename test file and update README badge link #4

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.23"
- name: Install Dependencies
run: go mod download
- name: Run Tests
run: go test -v ./...