Sha256: 10f04d3d7c56fcae5375c50740b6fcae5ab9e4479c709e335fa702a9abc9f33b
Contents?: true
Size: 1.56 KB
Versions: 1
Compression:
Stored size: 1.56 KB
Contents
name: Coverage on: pull_request: branches: - master paths-ignore: - 'README.md' - 'CHANGELOG.md' push: branches: - master paths-ignore: - 'README.md' - 'CHANGELOG.md' jobs: coverage: name: Coverage # Homemade support for [ci skip] no longer needed # https://github.blog/changelog/2021-02-08-github-actions-skip-pull-request-and-push-workflows-with-skip-ci/ # if: "contains(github.event.commits[0].message, '[ci skip]') == false" strategy: fail-fast: false matrix: os: - ubuntu-latest ruby: - "3.2" gemfile: - gemfiles/contracts_17_0.gemfile env: BUNDLE_GEMFILE: ${{ matrix.gemfile }} COVERALLS: true runs-on: ${{ matrix.os }} steps: - name: Checkout uses: actions/checkout@v4 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Collect coverage info run: bundle exec rake spec - name: Coveralls Parallel uses: coverallsapp/github-action@master continue-on-error: true with: github-token: ${{ secrets.github_token }} flag-name: run-${{ matrix.ruby }}-${{ matrix.gemfile }} parallel: true finish: needs: coverage runs-on: ubuntu-latest steps: - name: Send to Coveralls uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} parallel-finished: true
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
contracted_value-0.1.3 | .github/workflows/coverage.yml |