Sha256: babf0aafba8689f9001e698d10a5279b6d78554c7add57cc9818b28055b820ed

Contents?: true

Size: 780 Bytes

Versions: 1

Compression:

Stored size: 780 Bytes

Contents

name: build
on: [push, pull_request]
jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: [2.2, 2.3, 2.4, 2.5, 2.6, 3.0, 3.1]
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - name: Test and generate coverage
        run: bin/test
      - name: Format coverage
        if: ${{ matrix.ruby >= 3 }}
        run: bin/prepare_coverage
      - uses: paambaati/codeclimate-action@v2.7.5
        if: ${{ matrix.ruby >= 3 }}
        env:
          CC_TEST_REPORTER_ID: 0377ece62be9c7042557d76e4e38b867e51c51b2a42d10ef5102b613ac077eab
        with:
          debug: true
          coverageLocations: coverage/.resultset.json:simplecov

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
u-case-4.5.2 .github/workflows/ci.yml