Skip to content

Commit

Permalink
install gems in GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
cat5inthecradle committed Oct 3, 2024
1 parent 22da276 commit a275c64
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions .github/workflows/pr-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,25 @@ jobs:
ruby-version: 3.0.5
bundler-cache: true

- name: Install gems
run: bundle install

- name: Run tests
run: rake test

# Test on latest Ruby
test_3_3:
runs-on: ubuntu-latest
# test_3_3:
# runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3
# steps:
# - name: Checkout code
# uses: actions/checkout@v3

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
bundler-cache: true
# - name: Set up Ruby
# uses: ruby/setup-ruby@v1
# with:
# ruby-version: 3.3
# bundler-cache: true

- name: Run tests
run: rake test
# - name: Run tests
# run: rake test

0 comments on commit a275c64

Please sign in to comment.