Sha256: 6fd83da2c3bb6e79b50ba3c38508813d2ea7dbd1e5bb49b789857f736f3b3725

Contents?: true

Size: 854 Bytes

Versions: 2

Compression:

Stored size: 854 Bytes

Contents

name: CI

on:
  push:
  pull_request:
  schedule:
  - cron: '0 0 * * 0'

jobs:
  ci:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version:
        - '2.6'
        - '2.7'
        - '3.0'
        rails-version:
        - '6.0'
        - '6.1'
    env:
      TEST_RAILS_VERSION: ${{ matrix.rails-version }}
      CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true
    - name: Run tests
      run: bundle exec rake
    - name: Report code coverage
      if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.0' && matrix.rails-version == '6.1' }}
      continue-on-error: true
      uses: paambaati/codeclimate-action@v3.0.0

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
manageiq-messaging-1.1.1 .github/workflows/ci.yaml
manageiq-api-client-0.3.6 .github/workflows/ci.yaml