Sha256: 88d95e2d0b338589dedb6718a05d6e1fbcbdd08119a545e0ca80d8e9bb430c78

Contents?: true

Size: 988 Bytes

Versions: 4

Compression:

Stored size: 988 Bytes

Contents

name: CI

on:
  - push
  - pull_request

jobs:
  build:
    name: Ruby ${{ matrix.version }}
    runs-on: ubuntu-latest
    strategy:
      matrix:
        version:
          - 2.6
          - 2.7
          - 3.0
          - 3.1
    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 Bundle Commands
        run: |
          bundle config set --with docs
          bundle config set ignore_messages true
          bundle
      - name: Run RuboCop
        run: |
          bundle exec rubocop
      - name: Run Typecheck
        run: |
          bundle exec srb tc
      - name: Run tests
        run: |
          bundle exec rake test:library
      - name: Run REST wrapper tests
        run: |
          bundle exec rake test:rest_wrappers

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
shopify_api-10.1.0 .github/workflows/build.yml
shopify_api-10.0.3 .github/workflows/build.yml
shopify_api-10.0.2 .github/workflows/build.yml
shopify_api-10.0.1 .github/workflows/build.yml