tests: add basic tests for utilities

This commit is contained in:
Stavros
2025-02-10 18:22:46 +02:00
parent a8da813374
commit d8d347b45f
3 changed files with 344 additions and 6 deletions

23
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Tinyauth CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "^1.23.2"
- name: Run tests
run: go test -v ./...