Skip to content

Implementation of communication with OpenAI API for Chat Completion, … #1

Implementation of communication with OpenAI API for Chat Completion, …

Implementation of communication with OpenAI API for Chat Completion, … #1

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Configuring environment
uses: actions/setup-go@v2
with:
go-version: ^1.22.0
- name: Cloning repository
uses: actions/checkout@v2
- name: Run all openai-go tests
run: go test ./...
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v1.${{ github.run_number }}
release_name: Release v1.${{ github.run_number }}
draft: false
prerelease: false