Sha256: bb85b61963ae372c46d2ea2626f359ab7866e318de9d97bb64fc5d0d768956c0

Contents?: true

Size: 773 Bytes

Versions: 5

Compression:

Stored size: 773 Bytes

Contents

name: tests

on: [push, pull_request]

jobs:
  build:

    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby: ['3.0', '3.1', '3.2', '3.3']

    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

5 entries across 5 versions & 1 rubygems

Version Path
shopify-money-3.0.0 .github/workflows/tests.yml
shopify-money-2.2.2 .github/workflows/tests.yml
shopify-money-2.2.1 .github/workflows/tests.yml
shopify-money-2.2.0 .github/workflows/tests.yml
shopify-money-2.0.0 .github/workflows/tests.yml