Skip to content

Commit

Permalink
build: Add rspec to CI
Browse files Browse the repository at this point in the history
Adds our rspec test suite to our CI pipeline.
  • Loading branch information
ethowitz committed Nov 3, 2023
1 parent e308d5a commit 9febafa
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Ruby

on: [push, pull_request]

jobs:
test:

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 9febafa

Please sign in to comment.