Skip to content

馃敄 chore: release 0.1.1 through trusted publishing #45

馃敄 chore: release 0.1.1 through trusted publishing

馃敄 chore: release 0.1.1 through trusted publishing #45

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
test:
name: Ruby ${{ matrix.ruby }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['3.1', '3.2', '3.3', '3.4', '4.0']
steps:
- uses: actions/checkout@v7
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run specs
run: bundle exec rake spec
- name: Replay recorded workflow cassettes
run: bundle exec rake spec:replay
- name: Run RuboCop
run: bundle exec rubocop
- name: Build gem
run: gem build ruby_llm-team.gemspec
security:
name: Security checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Check whitespace
run: git diff --check