Skip to content

Commit 4ae812b

Browse files
author
Erin Soggs
committed
run tests
1 parent f667dbe commit 4ae812b

File tree

2 files changed

+25
-22
lines changed

2 files changed

+25
-22
lines changed

.circleci/config.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/ruby_ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Ruby CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
ruby: ['2.7.5', '3.0.3', '3.1.0']
11+
appraisal: ['rails_6.1', 'rails_7.0']
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Set up Ruby
15+
uses: ruby/setup-ruby@v1
16+
with:
17+
ruby-version: ${{ matrix.ruby }}
18+
bundler: '2.3.10'
19+
- name: Install dependencies
20+
run: |
21+
bundle install
22+
- name: Install appraisal dependencies
23+
run: bundle exec appraisal install
24+
- name: Run appraisal
25+
run: bundle exec appraisal ${{ matrix.appraisal }} rspec

0 commit comments

Comments
 (0)