We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f667dbe commit 4ae812bCopy full SHA for 4ae812b
.circleci/config.yml
.github/workflows/ruby_ci.yml
@@ -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