Files
Ettore Di Giacinto 2f20fcce01 Change LLM to interface, split tests, improve content review loop (#3)
* Split e2e and unit tests

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>

* Abstract away LLM to an interface

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>

* Update README

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>

* Fixups

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>

* Enhance content improve generation

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>

* Add unit test for reviewer

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>

* Better handling of result status of tool calls

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>

* Fixups

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>

* Add tools test file

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>

---------

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
2025-09-29 22:55:43 +02:00

110 lines
2.0 KiB
YAML

name: Test
on:
push:
branches: [ main ]
pull_request:
env:
CGO_ENABLED: 0
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.25]
os: [ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Install dependencies
run: |
go mod download
go mod verify
- name: Run go vet
run: go vet ./...
- name: Run go fmt check
run: |
if [ "$(go fmt ./... | wc -l)" -gt 0 ]; then
echo "The following files are not formatted:"
go fmt ./...
exit 1
fi
- name: Run tests
run: make test
test-e2e:
name: Test E2E
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.25]
os: [ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Install dependencies
run: |
go mod download
go mod verify
- name: Run go vet
run: go vet ./...
- name: Run go fmt check
run: |
if [ "$(go fmt ./... | wc -l)" -gt 0 ]; then
echo "The following files are not formatted:"
go fmt ./...
exit 1
fi
- name: Run tests
run: make test-e2e
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
cache: true
- name: Install golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: latest
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v4
with:
args: --timeout=10m