first commit

This commit is contained in:
2025-08-12 21:51:41 +07:00
commit f1efac98a0
27 changed files with 2170 additions and 0 deletions

18
.github/workflows/go-test.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
name: Go-test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.22.x'
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test ./...