Skip to content

Commit

Permalink
run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
erinsoggs authored and tcarac committed Dec 6, 2023
1 parent f667dbe commit ebf43a8
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 22 deletions.
22 changes: 0 additions & 22 deletions .circleci/config.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/ruby_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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.10'
- name: Install dependencies
run: |
bundle install
- name: Install appraisal dependencies
run: bundle exec appraisal install
- name: Run appraisal
run: bundle exec appraisal ${{ matrix.appraisal }} rspec

0 comments on commit ebf43a8

Please sign in to comment.