Skip to content

Streaming responses from OpenAI and GPT4All #698

Streaming responses from OpenAI and GPT4All

Streaming responses from OpenAI and GPT4All #698

Workflow file for this run

name: Build
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 19
- name: build
uses: gradle/gradle-build-action@v2
with:
arguments: build --full-stacktrace
- name: Upload reports
if: failure()
uses: actions/upload-artifact@v3
with:
name: 'reports'
path: '**/build/reports/**'