Sha256: 17da7c59af6f8c807da01073d2c5288a80518bc9cb69fa8f773cc2641e3d6eae

Contents?: true

Size: 1.67 KB

Versions: 1

Compression:

Stored size: 1.67 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:
        db:
          - mysql
        ruby:
          - 2.6
          - 2.7
          - 3.0
          - 3.1
        gemfile:
          - 6.0.gemfile
          - 6.1.gemfile
          - 7.0.gemfile
        exclude:
          - gemfile: 7.0.gemfile
            ruby: 2.6
    env:
      BUNDLE_GEMFILE: "gemfiles/${{ matrix.gemfile }}"

    services:
      mysql:
        image: mysql:5.6
        env:
          MYSQL_ROOT_PASSWORD: root_password
          MYSQL_USER: developer
          MYSQL_PASSWORD: developer_password
          MYSQL_DATABASE: github_actions_test
        ports:
          - 3306:3306
        # Set health checks to wait until mysql has started
        options: >-
          --health-cmd "mysqladmin ping"
          --health-interval 10s
          --health-timeout 5s
          --health-retries 3

    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

1 entries across 1 versions & 1 rubygems

Version Path
adaptive_alias-0.0.2 .github/workflows/ruby.yml