Sha256: 009e9d5c6206d103068740425609be3debaff51c35995a2929e8db924cda658b

Contents?: true

Size: 718 Bytes

Versions: 2

Compression:

Stored size: 718 Bytes

Contents

on: [push, pull_request]
jobs:
  test:
    strategy:
      matrix:
        ruby: [2.6, 2.7, 3.0, 3.1]
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
          ruby-version: ${{ matrix.ruby }}
      - name: Test Ruby ${{ matrix.ruby }}
        run: bundle exec rake
        if: matrix.ruby != '2.6'
      - name: Test and publish coverage for Ruby ${{ matrix.ruby }}
        uses: paambaati/codeclimate-action@v2.7.5
        env:
          CC_TEST_REPORTER_ID: 8bc2d8e54331569aeb442094c21cb64a58d6efa0670f65ff00d9ae887f63c0b4
        with:
          coverageCommand: bundle exec rake
        if: matrix.ruby == '2.6'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
openapi3_parser-0.9.2 .github/workflows/ci.yml
openapi3_parser-0.9.1 .github/workflows/ci.yml