Skip to content

fix: Add transcription session created event #111

fix: Add transcription session created event

fix: Add transcription session created event #111

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.20", "1.22", "1.23", "1.24"]
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 }}