Bump github.com/sashabaranov/go-openai from 1.26.3 to 1.32.1 #86
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI check on every PR and master push | |
on: | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- '**.md' | |
- 'Makefile' | |
- 'config.json' | |
push: | |
branches: | |
- 'master' | |
jobs: | |
ci: | |
name: CI check on every push | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- name: run test cases | |
run: make test && make | |
- name: Codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
files: ./coverage.txt | |
verbose: true |