Sha256: e1f016083fe8836f28e43fcbf007dcfbf667546f777b77e649991b54046fffff

Contents?: true

Size: 1.08 KB

Versions: 8

Compression:

Stored size: 1.08 KB

Contents

name: Ruby

on:
  push:
    paths-ignore:
      - 'README.md'
      - 'CHANGELOG.md'
  pull_request:
    branches: [ master ]
    paths-ignore:
      - 'README.md'
      - 'CHANGELOG.md'

jobs:
  test:
    runs-on: ubuntu-latest
    name: Test
    if: "contains(github.event.commits[0].message, '[ci skip]') == false"
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - 2.2
          - 2.6
          - 2.7
        gemfile:
          - Gemfile
    env:
      BUNDLE_GEMFILE: "gemfiles/${{ matrix.gemfile }}"

    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Setup Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true # runs 'bundle install' and caches installed gems automatically
      - name: Run tests
        run: bundle exec rake
      - name: Publish code coverage
        if: ${{ success() }}
        uses: paambaati/codeclimate-action@v2.7.5
        env:
          CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
ftx_exchange_api-0.0.2 .github/workflows/ruby.yml
ftx_exchange_api-0.0.1 .github/workflows/ruby.yml
max_exchange_api-1.2.0 .github/workflows/ruby.yml
max_exchange_api-1.1.1 .github/workflows/ruby.yml
max_exchange_api-1.1.0 .github/workflows/ruby.yml
max_exchange_api-1.0.0 .github/workflows/ruby.yml
max_exchange_api-0.1.0 .github/workflows/ruby.yml
max_exchange_api-0.0.1 .github/workflows/ruby.yml