Skip to content

updated readme

updated readme #6

Workflow file for this run

name: Test
on:
push:
branches:
- '**' # Trigger on any branch
jobs:
# Job to run tests on every push to any branch
test:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.5' # Use the Go version compatible with your project
- name: Run tests
run: |
go test -v