Skip to content

Support compact and bgcompact options in chat.save #392

Support compact and bgcompact options in chat.save

Support compact and bgcompact options in chat.save #392

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Compile
run: make
- name: Test
run: src/repl/mai-repl -h
build-arm64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Compile for Raspberry Pi (ARM64)
env:
GOOS: linux
GOARCH: arm64
CGO_ENABLED: 0
run: make
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.24.4'
- name: Compile for Windows
shell: bash
env:
GOOS: windows
GOARCH: amd64
CGO_ENABLED: 0
run: make
- name: Test
shell: bash
run: ./src/repl/mai-repl.exe -h