Sha256: 061c6347537f88ae5c8b2c8e02b414da183c7acab5d777a7e1159a8c3037baaf
Contents?: true
Size: 945 Bytes
Versions: 2
Compression:
Stored size: 945 Bytes
Contents
# This workflow uses actions that are not certified by GitHub. # They are provided by a third-party and are governed by # separate terms of service, privacy policy, and support # documentation. # 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: [ main ] pull_request: branches: [ main ] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby: - 2.5 - 2.6 - 2.7 name: Ruby ${{ matrix.ruby }} test steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: bundle install - run: bundle exec rake - run: CUCUMBER_PUBLISH_QUIET=true bundle exec cucumber
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
retest-0.6.0.pre3 | .github/workflows/ci.yml |
retest-0.6.0.pre2 | .github/workflows/ci.yml |