Sha256: 3c99970f8ae03cac4b7b298685a9fb2aa51cb8f99690e117577aa59b1d23e748

Contents?: true

Size: 824 Bytes

Versions: 3

Compression:

Stored size: 824 Bytes

Contents

name: build
on: [push]
jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: [2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 3.0, 3.1.0-preview1]
    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 && matrix.ruby < 3.1 }}
        run: bin/prepare_coverage
      - uses: paambaati/codeclimate-action@v2.7.5
        if: ${{ matrix.ruby >= 3 && matrix.ruby < 3.1 }}
        env:
          CC_TEST_REPORTER_ID: 8ce350edeb0772e94ffd678bbaca30d9c1293b9d9051a1689c79b91c21f5afd5
        with:
          debug: true
          coverageLocations: coverage/.resultset.json:simplecov

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
u-struct-1.0.0 .github/workflows/ci.yml
u-struct-0.12.0 .github/workflows/ci.yml
u-struct-0.11.0 .github/workflows/ci.yml