Skip to content

Commit

Permalink
Tweak GitHub Action
Browse files Browse the repository at this point in the history
I believe the latest rubygems is needed for some gems to install with
the correct platform.
  • Loading branch information
mkasberg committed Apr 23, 2024
1 parent 228dd97 commit d8a15dc
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ jobs:
- '3.1.2'

steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run the default task
run: bundle exec rake
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
rubygems: latest
bundler-cache: true
- name: Run the default task
run: bundle exec rake

0 comments on commit d8a15dc

Please sign in to comment.