Sha256: 0b5889cfd92d6ee3882cbd958611a15f35aea83dcd9cb42fbdb1b2f914f17620

Contents?: true

Size: 916 Bytes

Versions: 4

Compression:

Stored size: 916 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: ['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.3.3 .github/workflows/specs.yml
opera-0.3.2 .github/workflows/specs.yml
opera-0.3.1 .github/workflows/specs.yml
opera-0.3.0 .github/workflows/specs.yml