diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index c555ed0..a8cb533 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -9,43 +9,5 @@ on: - '*' jobs: - test: - runs-on: ${{ matrix.os }} - timeout-minutes: 40 - - strategy: - fail-fast: true - matrix: - ruby: - - 2.7 - - 3.0 - - 3.1 - 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-powershell.gemspec b/rex-powershell.gemspec index 884e898..7a9a56d 100644 --- a/rex-powershell.gemspec +++ b/rex-powershell.gemspec @@ -26,4 +26,7 @@ Gem::Specification.new do |spec| spec.add_runtime_dependency 'rex-text' spec.add_runtime_dependency 'rex-random_identifier' spec.add_runtime_dependency 'ruby-rc4' + + # 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