Skip to content

Update chat completions models #42

Update chat completions models

Update chat completions models #42

Workflow file for this run

name: PR sanity check
on: pull_request
jobs:
prcheck:
name: PR sanity check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.19'
- name: Run vet
run: |
go vet .
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3.4.0
with:
version: latest
- name: Run testing
run: go test -v