Sha256: 0deea812f12561d3e93f412c47af03c649c3e49437fde7d4b980433e3840fe13

Contents?: true

Size: 978 Bytes

Versions: 2

Compression:

Stored size: 978 Bytes

Contents

name: CI

on:
  - push
  - pull_request

jobs:
  build:
    name: Ruby ${{ matrix.version }}
    runs-on: ubuntu-latest
    strategy:
      matrix:
        version:
          - 3.0
          - 3.1
    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby ${{ matrix.version }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.version }}
      - name: Install OpenSSL
        run: |
          sudo apt-get update
          sudo apt-get install -y libssl-dev
      - 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

2 entries across 2 versions & 1 rubygems

Version Path
shopify_api-14.0.1 .github/workflows/build.yml
shopify_api-14.0.0 .github/workflows/build.yml