mirror of
https://github.com/mudler/LocalAGI.git
synced 2026-07-23 18:55:52 -04:00
bc567ef7dd
* feat(skills): add skills management Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * improve ui * Update webui/skills_handlers.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update webui/skills_handlers.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update webui/skills_handlers.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update webui/skills_handlers.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update Dockerfile.webui Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update go.mod Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update webui/skills_handlers.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Address feedback from review Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Fixups Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * allow to customize skill prompt Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Fixups Signed-off-by: Ettore Di Giacinto <mudler@localai.io> --------- Signed-off-by: Ettore Di Giacinto <mudler@localai.io> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
34 lines
678 B
YAML
34 lines
678 B
YAML
name: Run Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
concurrency:
|
|
group: ci-tests-${{ github.head_ref || github.ref }}-${{ github.repository }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v6
|
|
- uses: actions/setup-go@v6
|
|
with:
|
|
go-version: '>=1.26.0'
|
|
- name: Run tests
|
|
run: |
|
|
make tests
|
|
test-e2e:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v6
|
|
- uses: actions/setup-go@v6
|
|
with:
|
|
go-version: '>=1.26.0'
|
|
- run: |
|
|
make tests-e2e |