Skip to content

Commit

Permalink
STORY-19279: Update testing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dcaddell committed Aug 30, 2024
1 parent d623955 commit c8fef8a
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,21 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [2.4, 2.5, 2.7, '3.0', 3.1]
ruby: [3.1, 3.2, 3.3]
gemfile:
- Gemfile
- gemfiles/unlocked.gemfile
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: 2.2.29
bundler-cache: true
- name: Unit tests
run: bundle exec rake test
- uses: nick-fields/retry@v3
with:
max_attempts: 2
timeout_minutes: 5
command: bundle exec rake test

0 comments on commit c8fef8a

Please sign in to comment.