Skip to content

feat: update default OpenAI model to gpt-4o-mini in configuration #13

feat: update default OpenAI model to gpt-4o-mini in configuration

feat: update default OpenAI model to gpt-4o-mini in configuration #13

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
build_and_test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose