Skip to content

Fix security issues and improve error handling #83

Fix security issues and improve error handling

Fix security issues and improve error handling #83

Workflow file for this run

name: Test
on:
push:
jobs:
build:
name: Test
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21' # Change to the required Go version
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: go test -v