Skip to content

Feature/7 use official go openai client #3

Feature/7 use official go openai client

Feature/7 use official go openai client #3

Workflow file for this run

name: CI
on:
pull_request:
paths:
- 'plugins/**'
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60
- name: Run lints
run: make tidy
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Run tests
run: make test