Sha256: b56a73fc3531ded3f905dcbb0d5e5a9c488045b19e1ccfa5cb2d77fe832f85ec

Contents?: true

Size: 1022 Bytes

Versions: 4

Compression:

Stored size: 1022 Bytes

Contents

name: CI

on:
  - push

jobs:
  build:
    name: Ruby ${{ matrix.version }} ${{ matrix.gemfile }}
    runs-on: ubuntu-latest
    env:
      BUNDLE_GEMFILE: ${{ matrix.gemfile }}
    strategy:
      matrix:
        version:
          - "2.6"
          - "2.7"
          - "3.0"
        gemfile:
          - Gemfile_ar41
          - Gemfile_ar50
          - Gemfile_ar51
          - Gemfile_ar60
          - Gemfile_ar_main
        exclude:
          - version: "2.7"
            gemfile: Gemfile_ar41
          - version: "3.0"
            gemfile: Gemfile_ar41
    steps:
      - uses: actions/checkout@v2
      - name: Remove Gemfile.lock
        run: |
          rm -f ${GITHUB_WORKSPACE}/Gemfile.lock
      - name: Set up Ruby ${{ matrix.version }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.version }}
      - name: Run Tests
        run: |
          bundle config set --with docs
          bundle config set ignore_messages true
          bundle
          bundle exec rake test

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
shopify_api-9.5.2 .github/workflows/build.yml
ruby_shopify_api-1.1.0 .github/workflows/build.yml
ruby_shopify_api-1.0.0 .github/workflows/build.yml
shopify_api-9.5.1 .github/workflows/build.yml