Sha256: b999798729b127d714dee190e25a586237e65915cbada0b7473ad20928194ae6

Contents?: true

Size: 930 Bytes

Versions: 4

Compression:

Stored size: 930 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: Specs

on:
  pull_request:
    branches: []

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['2.6', '2.7', '3.0', '3.2', 'jruby']

    steps:
    - uses: actions/checkout@v4
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: false # runs 'bundle install' and caches installed gems automatically
    - name: Install gems
      run: bundle install
    - name: Run tests
      run: bundle exec rspec

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
opera-0.2.18 .github/workflows/specs.yml
opera-0.2.17 .github/workflows/specs.yml
opera-0.2.16 .github/workflows/specs.yml
opera-0.2.15 .github/workflows/specs.yml