Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 2 additions & 40 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 3 additions & 0 deletions rex-powershell.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading