From 5b17058823d86ff3249fad3fd112e1e53febb14a Mon Sep 17 00:00:00 2001 From: cgranleese-r7 Date: Mon, 31 Mar 2025 14:39:12 +0100 Subject: [PATCH] Updates verify workflow to use shared pipeline --- .github/workflows/verify.yml | 44 ++---------------------------------- rex-text.gemspec | 3 +++ 2 files changed, 5 insertions(+), 42 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 6fe280d..7a610e6 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -25,45 +25,5 @@ on: - '*' jobs: - test: - runs-on: ${{ matrix.os }} - timeout-minutes: 40 - - strategy: - fail-fast: true - matrix: - ruby: - - '2.7' - - '3.0' - - '3.1' - - '3.2' - - '3.3.0-preview1' - os: - - ubuntu-20.04 - - ubuntu-latest - exclude: - - { os: ubuntu-latest, ruby: '2.7' } - - { os: ubuntu-latest, ruby: '3.0' } - test_cmd: - - bundle exec rspec - - env: - RAILS_ENV: test - - name: ${{ matrix.os }} - Ruby ${{ matrix.ruby }} - ${{ matrix.test_cmd }} - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Setup Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: ${{ matrix.ruby }} - bundler-cache: true - - - name: ${{ matrix.test_cmd }} - run: | - echo "${CMD}" - bash -c "${CMD}" - env: - CMD: ${{ matrix.test_cmd }} + build: + uses: rapid7/metasploit-framework/.github/workflows/shared_gem_verify.yml@master diff --git a/rex-text.gemspec b/rex-text.gemspec index 58e9faf..a7a7b90 100644 --- a/rex-text.gemspec +++ b/rex-text.gemspec @@ -22,4 +22,7 @@ Gem::Specification.new do |spec| spec.add_development_dependency "rake" spec.add_development_dependency "rspec" + + # bigdecimal is not part of the default gems starting from Ruby 3.4.0: https://www.ruby-lang.org/en/news/2023/12/25/ruby-3-3-0-released/ + spec.add_runtime_dependency 'bigdecimal' end