Skip to content

Commit

Permalink
Revert to old gemfile definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Schoknecht committed Jun 20, 2024
1 parent 275297d commit a24c037
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@ jobs:
fail-fast: false
matrix:
ruby: ['3.0', '3.1', '3.2', '3.3']
rails: ['6.1', '7.0', '7.1']
gemfile:
- gemfiles/Gemfile-activemodel-6.1.x
- gemfiles/Gemfile-activemodel-7.0.x
- gemfiles/Gemfile-activemodel-7.1.x

name: Ruby ${{ matrix.ruby }} / Rails ${{ matrix.rails }}
name: Ruby ${{ matrix.ruby }} / Gemfile {{ matrix.gemfile }}

steps:
- uses: actions/checkout@v3
Expand All @@ -26,8 +29,8 @@ jobs:
with:
ruby-version: ${{ matrix.ruby }}

- name: Install dependencies for gemfiles/Gemfile-activemodel-${{ matrix.rails }}
run: bundle install --gemfile=gemfiles/Gemfile-activemodel-${{ matrix.rails }}
- name: Install dependencies for ${{ matrix.gemfile }}
run: bundle install --gemfile=${{ matrix.gemfile }}

- name: Run tests
run: bundle exec rspec

0 comments on commit a24c037

Please sign in to comment.