Sha256: 4a00fa23a9837b20021a4d7d07e1390cb570cb97759faeaba1d94b140d799296

Contents?: true

Size: 543 Bytes

Versions: 1

Compression:

Stored size: 543 Bytes

Contents

name: Testing

on:
  pull_request:
    branches:
      - main

jobs:
  spec_tests:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version:
          - '2.7'
          - '3.0'
          - '3.1'
          - '3.2'
    steps:
    - uses: actions/checkout@v3
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true # runs 'bundle install' and caches installed gems automatically
    - name: Run spec tests
      run: bundle exec rake test

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
beaker-abs-1.0.0 .github/workflows/testing.yml