initial import
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2025-09-11 17:30:21 +09:00
commit 82b61a27b2
7 changed files with 370 additions and 0 deletions

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

@@ -0,0 +1,27 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: ["*"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -v ./...
- name: Build
run: go build -v ./...