Skip to content

Commit

Permalink
update github actions to test rails 8
Browse files Browse the repository at this point in the history
  • Loading branch information
adiaz04 committed Nov 1, 2024
1 parent e561ed7 commit 01eba9c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,19 @@ jobs:
bundler-cache: true
- name: Run tests
run: bundle exec rake
test_rails_8:
runs-on: ubuntu-latest
strategy:
matrix:
gemfile: [ 'Gemfile.rails-8.0' ]
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true
- name: Run tests
run: bundle exec rake

0 comments on commit 01eba9c

Please sign in to comment.