Sha256: 567cd8b41c1dbfc6fb48c6f10acabdc751fa9a1edbcb29f1a37646aabdaa3f77
Contents?: true
Size: 1.38 KB
Versions: 2
Compression:
Stored size: 1.38 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: CI on: push: branches: [ master ] pull_request: branches: [ master ] schedule: - cron: '16 4 12 * *' env: CUCUMBER_PUBLISH_QUIET: true RUBYOPTS: "--disable-did-you-mean" jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby: [2.6, 2.7, "3.0", "3.1", jruby-9.3] 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
reek-6.1.1 | .github/workflows/ruby.yml |
reek-6.1.0 | .github/workflows/ruby.yml |