Skip to content

add a constant that defines the chat response timeout duration after #93

add a constant that defines the chat response timeout duration after

add a constant that defines the chat response timeout duration after #93

Workflow file for this run

name: rust tests
on:
push:
branches: [ "master", "dev" ]
pull_request:
branches: [ "master", "dev" ]
env:
CARGO_TERM_COLOR: always
DATABASE_URL: ${{ secrets.DATABASE_URL }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Check formatting
run: cargo fmt -- --check
- name: Build
run: cargo build --verbose
# - name: Run tests
# run: cargo test --verbose