Modify the repository version to v0.1.0

This commit is contained in:
2025-11-21 17:43:37 +08:00
parent e9b8231327
commit 70ee50f4d8
19 changed files with 472 additions and 1835 deletions

View File

@@ -1,28 +0,0 @@
name: build_and_test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update System
run: |
sudo apt update && sudo apt upgrade -y
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.25'
- name: Install Modules
run: go mod tidy
- name: Test
run: go test -v ./...