Sha256: 5ebdb944c0a14f3a7f0ad5f1310d52199076d7f279f27907786460188d588e5d
Contents?: true
Size: 1.12 KB
Versions: 4
Compression:
Stored size: 1.12 KB
Contents
name: Ruby on: push: paths-ignore: - 'README.md' - 'CHANGELOG.md' pull_request: branches: [ master ] paths-ignore: - 'README.md' - 'CHANGELOG.md' jobs: test: runs-on: ubuntu-latest name: Test if: "contains(github.event.commits[0].message, '[ci skip]') == false" strategy: fail-fast: false matrix: ruby: - 2.3 - 2.6 - 2.7 gemfile: - Gemfile env: BUNDLE_GEMFILE: "gemfiles/${{ matrix.gemfile }}" steps: - name: Checkout uses: actions/checkout@v2 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Run tests run: bundle exec rake - name: Publish code coverage if: ${{ success() && github.event.pull_request.head.repo.full_name == github.repository }} uses: paambaati/codeclimate-action@v2.7.5 env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
multi_range-2.2.3 | .github/workflows/ruby.yml |
multi_range-2.2.2 | .github/workflows/ruby.yml |
multi_range-2.2.1 | .github/workflows/ruby.yml |
multi_range-2.2.0 | .github/workflows/ruby.yml |