Sha256: 6503faa7b4b9ab75822f8ce6edd32e66af0120c1cbcc84d2019c936a43eeef20

Contents?: true

Size: 762 Bytes

Versions: 3

Compression:

Stored size: 762 Bytes

Contents

name: Test Henkei Ruby gem

on:
  push:
    branches: [1.x]
  pull_request:
    branches: [1.x]

env:
  CI: true

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['2.7', '3.0', '3.1', '3.2']

    steps:
      - uses: actions/checkout@v3

      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
          bundler-cache: true

      - name: Lint code - Rubocop
        run: bundle exec rubocop

      - name: Run tests
        run: bundle exec rspec

      - name: Test & publish code coverage
        uses: paambaati/codeclimate-action@v3.2.0
        env:
          CC_TEST_REPORTER_ID: bb96c1ff9dc66724c38fb4eb54486dd72dc88a7fd6e727c034b9cf8d747d069e

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
henkei-1.28.5.1 .github/workflows/test.yml
henkei-1.28.4.1 .github/workflows/test.yml
henkei-1.28.3.2 .github/workflows/test.yml