From 511081a0e484a055425223e791a3bbf29729688e Mon Sep 17 00:00:00 2001 From: reugn Date: Sat, 17 Feb 2024 16:08:50 +0200 Subject: [PATCH 1/3] docs: add build status badge --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f6f132a..845ba8a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ # gemini-cli +[![Build](https://github.com/reugn/gemini-cli/actions/workflows/build.yml/badge.svg)](https://github.com/reugn/gemini-cli/actions/workflows/build.yml) + A command-line interface (CLI) for [Google Gemini](https://deepmind.google/technologies/gemini/). Google Gemini is a family of multimodal artificial intelligence (AI) large language models that have From 63bb379016ef2521a0a034e1ddd01a56cef17f56 Mon Sep 17 00:00:00 2001 From: reugn Date: Sat, 17 Feb 2024 16:12:01 +0200 Subject: [PATCH 2/3] change branch name to main in the golangci-lint workflow --- .github/workflows/golangci-lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 5f2188f..b657dd8 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -2,7 +2,7 @@ name: golangci-lint on: push: branches: - - master + - main pull_request: jobs: From 7fbf5bc95f181542319f2150a3d274577890521f Mon Sep 17 00:00:00 2001 From: reugn Date: Sat, 17 Feb 2024 16:19:39 +0200 Subject: [PATCH 3/3] update go version format --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 216462d..9f30f79 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/reugn/gemini-cli -go 1.21.0 +go 1.21 require ( github.com/google/generative-ai-go v0.7.0