Sha256: 32f03f098a55c1aefb4672e7865d1b0bd7bb6bacbad773450b9202bc0f2033dd
Contents?: true
Size: 1.23 KB
Versions: 4
Compression:
Stored size: 1.23 KB
Contents
# This workflow will download a prebuilt Ruby version, install dependencies and # run tests with Rake # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby name: Ruby on: push: branches: [ master ] pull_request: branches: [ master ] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby: [2.4, 2.5, 2.6, 2.7, jruby-9.2] steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run specs run: bundle exec rake test:spec - name: Run performance tests run: bundle exec rake test:performance - name: Update default configuration run: bundle exec rake configuration:update_default_configuration - name: Run cucumber features run: bundle exec rake test:features - name: Run code quality specs run: bundle exec rake test:quality rubocop: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: 2.7 bundler-cache: true - name: Run RuboCop run: bundle exec rubocop -P
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
reek-6.0.6 | .github/workflows/ruby.yml |
reek-6.0.5 | .github/workflows/ruby.yml |
reek-6.0.4 | .github/workflows/ruby.yml |
reek-6.0.3 | .github/workflows/ruby.yml |