Skip to content

Add /v1/realtime/sessions API to create ephemeral for WebRTC connection #96

Add /v1/realtime/sessions API to create ephemeral for WebRTC connection

Add /v1/realtime/sessions API to create ephemeral for WebRTC connection #96

Workflow file for this run

name: Sanity check
on:
- push
- pull_request
jobs:
prcheck:
name: Sanity check
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.19", "1.20", "1.22", "1.23"]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Run vet
run: |
go vet .
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: latest
- name: Run tests
run: make test
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}