Sha256: 599f39c8e2678ede7b6a48fed5b3b3c69943d1f0c7f328fc3c4087ab0e783371

Contents?: true

Size: 782 Bytes

Versions: 3

Compression:

Stored size: 782 Bytes

Contents

name: tests

on: [push, pull_request]
  
jobs:
  build:

    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby: ['2.6', '2.7', '3.0', '3.1', '3.2']

    name: Ruby ${{ matrix.ruby }}
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby ${{ matrix.ruby }}
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - uses: actions/cache@v1
      with:
        path: vendor/bundle
        key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
        restore-keys: |
          ${{ runner.os }}-gems-
    - name: Install dependencies
      run: |
        gem install bundler
        bundle config path vendor/bundle
        bundle install --jobs 4 --retry 3
    - name: Run tests
      run: |
        bundle exec rake

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
shopify-money-1.3.0 .github/workflows/tests.yml
shopify-money-1.2.1 .github/workflows/tests.yml
shopify-money-1.2.0 .github/workflows/tests.yml