- Bump Go version from 1.22.2 to 1.23 for improved performance. - Update dependencies in go.mod and go.sum, including: - github.com/PuerkitoBio/goquery to v1.10.1 - github.com/dchest/captcha to v1.1.0 - github.com/evanw/esbuild to v0.24.2 - github.com/fatih/color to v1.18.0 - github.com/fsnotify/fsnotify to v1.8.0 - github.com/spf13/cobra to v1.8.1 - github.com/stretchr/testify to v1.10.0 - github.com/xuri/excelize/v2 to v2.9.0 - Introduce RAG (Retrieval-Augmented Generation) initialization in the Neo API, enhancing assistant capabilities. - Refactor workflows to use Go 1.23 for testing and CI processes, ensuring compatibility with the latest features.
229 lines
5.9 KiB
YAML
229 lines
5.9 KiB
YAML
name: Unit Test
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
tags:
|
|
description: "Version"
|
|
push:
|
|
branches: [main]
|
|
|
|
env:
|
|
YAO_DEV: ${{ github.WORKSPACE }}
|
|
YAO_ENV: development
|
|
YAO_ROOT: ${{ github.WORKSPACE }}/../app
|
|
YAO_HOST: 0.0.0.0
|
|
YAO_PORT: 5099
|
|
YAO_SESSION: "memory"
|
|
YAO_LOG: "./logs/application.log"
|
|
YAO_LOG_MODE: "TEXT"
|
|
YAO_JWT_SECRET: "bLp@bi!oqo-2U+hoTRUG"
|
|
YAO_DB_AESKEY: "ZLX=T&f6refeCh-ro*r@"
|
|
OSS_TEST_ID: ${{ secrets.OSS_TEST_ID}}
|
|
OSS_TEST_SECRET: ${{ secrets.OSS_TEST_SECRET}}
|
|
ROOT_PLUGIN: ${{ github.WORKSPACE }}/../../../data/gou-unit/plugins
|
|
REPO_KUN: ${{ github.repository_owner }}/kun
|
|
REPO_XUN: ${{ github.repository_owner }}/xun
|
|
REPO_GOU: ${{ github.repository_owner }}/gou
|
|
|
|
MYSQL_TEST_HOST: "127.0.0.1"
|
|
MYSQL_TEST_PORT: "3308"
|
|
MYSQL_TEST_USER: test
|
|
MYSQL_TEST_PASS: "123456"
|
|
|
|
SQLITE_DB: "./app/db/yao.db"
|
|
|
|
REDIS_TEST_HOST: "127.0.0.1"
|
|
REDIS_TEST_PORT: "6379"
|
|
REDIS_TEST_DB: "2"
|
|
|
|
MONGO_TEST_HOST: "127.0.0.1"
|
|
MONGO_TEST_PORT: "27017"
|
|
MONGO_TEST_USER: "root"
|
|
MONGO_TEST_PASS: "123456"
|
|
|
|
OPENAI_TEST_KEY: ${{ secrets.OPENAI_TEST_KEY }}
|
|
TEST_MOAPI_SECRET: ${{ secrets.OPENAI_TEST_KEY }}
|
|
TEST_MOAPI_MIRROR: https://api.openai.com
|
|
|
|
TAB_NAME: "::PET ADMIN"
|
|
PAGE_SIZE: "20"
|
|
PAGE_LINK: "https://yaoapps.com"
|
|
PAGE_ICON: "icon-trash"
|
|
|
|
DEMO_APP: ${{ github.WORKSPACE }}/../app
|
|
|
|
# Application Setting
|
|
|
|
## Path
|
|
YAO_EXTENSION_ROOT: ${{ github.WORKSPACE }}/../extension
|
|
YAO_TEST_APPLICATION: ${{ github.WORKSPACE }}/../app
|
|
YAO_SUI_TEST_APPLICATION: ${{ github.WORKSPACE }}/../yao-startup-webapp
|
|
|
|
## Runtime
|
|
YAO_RUNTIME_MIN: 3
|
|
YAO_RUNTIME_MAX: 6
|
|
YAO_RUNTIME_HEAP_LIMIT: 1500000000
|
|
YAO_RUNTIME_HEAP_RELEASE: 10000000
|
|
YAO_RUNTIME_HEAP_AVAILABLE: 550000000
|
|
YAO_RUNTIME_PRECOMPILE: true
|
|
|
|
jobs:
|
|
unit-test:
|
|
runs-on: ubuntu-22.04
|
|
strategy:
|
|
matrix:
|
|
go: [1.23]
|
|
db: [MySQL8.0, MySQL5.7, SQLite3]
|
|
redis: [4, 5, 6]
|
|
mongo: ["6.0"]
|
|
steps:
|
|
- name: Checkout Kun
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: ${{ env.REPO_KUN }}
|
|
path: kun
|
|
|
|
- name: Checkout Xun
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: ${{ env.REPO_XUN }}
|
|
path: xun
|
|
|
|
- name: Checkout Gou
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: ${{ env.REPO_GOU }}
|
|
path: gou
|
|
|
|
- name: Checkout V8Go
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: yaoapp/v8go
|
|
path: v8go
|
|
|
|
- name: Unzip libv8
|
|
run: |
|
|
files=$(find ./v8go -name "libv8*.zip")
|
|
for file in $files; do
|
|
dir=$(dirname "$file") # Get the directory where the ZIP file is located
|
|
echo "Extracting $file to directory $dir"
|
|
unzip -o -d $dir $file
|
|
rm -rf $dir/__MACOSX
|
|
done
|
|
|
|
- name: Checkout Demo App
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: yaoapp/yao-dev-app
|
|
path: app
|
|
|
|
- name: Checkout Yao Startup Webapp
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: yaoapp/yao-startup-webapp
|
|
submodules: true
|
|
token: ${{ secrets.YAO_TEST_TOKEN }}
|
|
path: yao-startup-webapp
|
|
|
|
- name: Checkout Extension
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: yaoapp/yao-extensions-dev
|
|
path: extension
|
|
|
|
- name: Move Kun, Xun, Gou, V8Go, Extension
|
|
run: |
|
|
mv kun ../
|
|
mv xun ../
|
|
mv gou ../
|
|
mv v8go ../
|
|
mv app ../
|
|
mv extension ../
|
|
mv yao-startup-webapp ../
|
|
ls -l .
|
|
ls -l ../
|
|
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Go ${{ matrix.go }}
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ matrix.go }}
|
|
|
|
- name: Start Redis
|
|
uses: supercharge/redis-github-action@1.4.0
|
|
with:
|
|
redis-version: ${{ matrix.redis }}
|
|
|
|
- name: Start MongoDB
|
|
uses: supercharge/mongodb-github-action@1.8.0
|
|
with:
|
|
mongodb-version: ${{ matrix.mongo }}
|
|
mongodb-username: root
|
|
mongodb-password: 123456
|
|
mongodb-db: test
|
|
|
|
- name: Setup MySQL8.0 (connector)
|
|
uses: ./.github/actions/setup-db
|
|
with:
|
|
kind: "MySQL8.0"
|
|
db: "test"
|
|
user: "test"
|
|
password: "123456"
|
|
port: "3308"
|
|
|
|
- name: Setup ${{ matrix.db }}
|
|
uses: ./.github/actions/setup-db
|
|
with:
|
|
kind: "${{ matrix.db }}"
|
|
db: "xiang"
|
|
user: "xiang"
|
|
password: ${{ secrets.UNIT_PASS }}
|
|
|
|
- name: Setup Go Tools
|
|
run: |
|
|
make tools
|
|
|
|
- name: Setup ENV & Host
|
|
env:
|
|
PASSWORD: ${{ secrets.UNIT_PASS }}
|
|
run: |
|
|
sudo echo "127.0.0.1 local.iqka.com" | sudo tee -a /etc/hosts
|
|
echo "YAO_DB_DRIVER=$DB_DRIVER" >> $GITHUB_ENV
|
|
echo "GITHUB_WORKSPACE:\n" && ls -l $GITHUB_WORKSPACE
|
|
|
|
if [ "$DB_DRIVER" = "mysql" ]; then
|
|
echo "YAO_DB_PRIMARY=$DB_USER:$PASSWORD@$DB_HOST" >> $GITHUB_ENV
|
|
elif [ "$DB_DRIVER" = "postgres" ]; then
|
|
echo "YAO_DB_PRIMARY=postgres://$DB_USER:$PASSWORD@$DB_HOST" >> $GITHUB_ENV
|
|
else
|
|
echo "YAO_DB_PRIMARY=$YAO_ROOT/$DB_HOST" >> $GITHUB_ENV
|
|
fi
|
|
|
|
echo ".:\n" && ls -l .
|
|
echo "..:\n" && ls -l ..
|
|
echo "../app:\n" && ls -l ../app
|
|
ping -c 1 -t 1 local.iqka.com
|
|
|
|
- name: Test Prepare
|
|
run: |
|
|
make vet
|
|
make fmt-check
|
|
make misspell-check
|
|
|
|
- name: Inspect
|
|
run: |
|
|
go run . run utils.env.Get MONGO_TEST_HOST
|
|
go run . run utils.env.Get REDIS_TEST_HOST
|
|
go run . inspect
|
|
|
|
- name: Run test
|
|
run: |
|
|
make test
|
|
|
|
- name: Codecov Report
|
|
uses: codecov/codecov-action@v4
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
|