Skip to content

Commit

Permalink
Update ruby.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldrapper committed Jan 10, 2025
1 parent 3e0fc57 commit d3f3885
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
fail-fast: false
matrix:
ruby-version: ${{ fromJson(needs.ruby-versions.outputs.versions) }}

steps:
- uses: actions/checkout@v3
- name: Set up Ruby
Expand All @@ -34,6 +33,22 @@ jobs:
bundler-args: --without development
- name: Quickdraw tests
run: bundle exec qt -t 1 "./test/**/*.test.rb"
allocations_test:
needs: ruby-versions
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version:
["3.2", "3.3", "3.4", "head", "truffleruby", "truffleruby-head"]
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
bundler-args: --without development
- name: Test allocations
run: bundle exec ./allocations_test.rb
rubocop:
Expand Down

0 comments on commit d3f3885

Please sign in to comment.