Skip to content

feat: add support for litellm client metadata in completion calls #32 #231

feat: add support for litellm client metadata in completion calls #32

feat: add support for litellm client metadata in completion calls #32 #231

Workflow file for this run

name: RSpec Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.7', '3.0', '3.1']
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rspec
- name: Upload test results
uses: actions/upload-artifact@v4
if: failure()
with:
name: rspec-results
path: tmp/rspec_results