Skip to content

Improves tests

Improves tests #3

Workflow file for this run

name: Testing on push and PR
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Run Go tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22.1
- name: Install Go dependencies
run: go mod download
- name: Run tests
run: go test -v ./...