Skip to content

Commit

Permalink
trying to fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
oliveranthony17 committed Oct 14, 2024
1 parent 57a8690 commit a58c014
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,26 @@ env:
jobs:
tests:
name: Test
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: [2.7, 3.0, 3.1, 3.2, 3.3]
gemfile: ['gemfiles/rails_6_1.gemfile',
'gemfiles/rails_7_0.gemfile',
'gemfiles/rails_7_1.gemfile',
'gemfiles/rails_7_2.gemfile']

runs-on: ${{ matrix.os }}

env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down

0 comments on commit a58c014

Please sign in to comment.