Sha256: 7df29a0a972645c6ac9c37d088be528155f4de1535ae479e105f158be0db186a

Contents?: true

Size: 675 Bytes

Versions: 2

Compression:

Stored size: 675 Bytes

Contents

name: CI

on: [pull_request]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: [head, 3.2, 3.1, 3.0, 2.7]
      fail-fast: false
    continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
    steps:
    - uses: actions/checkout@v3
    - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
    - name: Set up Ruby ${{ matrix.ruby-version }}
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true
    - name: Install dependencies
      run: bundle install
    - name: Run tests
      run: bundle exec rspec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
simple_scripting-0.14.1 .github/workflows/ci.yml
simple_scripting-0.14.0 .github/workflows/ci.yml