Skip to content

Commit

Permalink
run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
erinsoggs committed Dec 6, 2023
1 parent f667dbe commit bd8a20d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ruby_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Ruby CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.7.5', '3.0.3', '3.1.0']
appraisal: ['rails_6.1', 'rails_7.0']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: '2.3.6'
- name: Install dependencies
run: |
bundle install
- name: Run tests
run: bundle exec appraisal ${{ matrix.appraisal }} rspec

0 comments on commit bd8a20d

Please sign in to comment.