Skip to content

Commit

Permalink
build: Add rspec to CI (#22)
Browse files Browse the repository at this point in the history
Adds our rspec test suite to our CI pipeline.
  • Loading branch information
ethan-readyset authored Nov 30, 2023
1 parent fd636b4 commit 443bcdd
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Ruby

on:
push:
branches:
- main
- release-*
pull_request:

jobs:
rspec:

runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.7', '3.0', '3.1', '3.2']

steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rspec

0 comments on commit 443bcdd

Please sign in to comment.