Skip to content

Commit

Permalink
FIX: try run tests on supported version while gemfile is 3.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
benaitcheson committed Jul 23, 2024
1 parent 44caff7 commit f88bc11
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/rubyonrails.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [3.2.2, 3.3.4]
services:
postgres:
image: postgres:11-alpine
Expand All @@ -32,7 +35,7 @@ jobs:
- name: Install Ruby and gems
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
with:
ruby-version: 3.2.2
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
# Add or replace database setup steps here
- name: Set up database schema
Expand All @@ -49,7 +52,7 @@ jobs:
- name: Install Ruby and gems
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
with:
ruby-version: 3.2.2
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
# Add or replace any other lints here
- name: Security audit dependencies
Expand Down

0 comments on commit f88bc11

Please sign in to comment.