Sha256: 4b46d224e03a68abf1a38905b80bd9a60ec3f0ec1a8908915c284010ab0d21d7

Contents?: true

Size: 438 Bytes

Versions: 3

Compression:

Stored size: 438 Bytes

Contents

name: ci

on: [push]

permissions:
  contents: read

jobs:
  rspec:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['2.7', '3.0', '3.1', 'head']

    steps:
    - uses: actions/checkout@v4
      
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true
        
    - name: Run RSpec
      run: bundle exec rspec --color

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
revector-0.1.2 .github/workflows/ci.yml
revector-0.1.1 .github/workflows/ci.yml
revector-0.1.0 .github/workflows/ci.yml