Sha256: d0f9d13d348718280aa27f53c851679b16987ddb5e3e28eeebb68246a9306751

Contents?: true

Size: 1.07 KB

Versions: 1

Compression:

Stored size: 1.07 KB

Contents

name: Test

on:
  pull_request:
    types:
      - opened
      - reopened
      - synchronize
  workflow_call:
    secrets:
      CC_TEST_REPORTER_ID:
        required: true

jobs:
  test:
    runs-on: ubuntu-latest
    continue-on-error: ${{endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug'}}
    strategy:
      fail-fast: false
      matrix:
        ruby: [2.5, 2.6, 2.7, '3.0', 3.1, 3.2, 3.3, head]
    steps:
      - uses: actions/checkout@v4
      - uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
          ruby-version: ${{matrix.ruby}}
      - run: bundle install
      - run: bundle exec rake
  coverage:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
          ruby-version: 3.2
      - run: bundle install
      - name: Test & publish code coverage
        uses: paambaati/codeclimate-action@v5.0.0
        env:
          CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
        with:
          coverageCommand: bundle exec rake
          debug: true

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
itax_code-2.0.3 .github/workflows/test.yml