feat: enhance chat functionality with new ChatHelpers component and optional tool deletion #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: go | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
ignore-paths: | |
- ui/admin/** | |
- ui/user/** | |
jobs: | |
lint: | |
runs-on: depot-ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- name: Build | |
run: make build | |
- name: Validate Go Code | |
run: make validate-go-code |