Skip to content

feat: add a system command to toggle input mode (#9) #28

feat: add a system command to toggle input mode (#9)

feat: add a system command to toggle input mode (#9) #28

Workflow file for this run

name: Build
on:
push:
branches:
- '**'
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.21.x, 1.22.x]
steps:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Build
run: |
cd cmd/gemini
go build .