Sha256: 182fe969c493d5c9514136f8f77cb38754dd9b6cb5e137041155fa6ee041721e
Contents?: true
Size: 1.48 KB
Versions: 2
Compression:
Stored size: 1.48 KB
Contents
name: CI PR Builds on: push: branches: - master pull_request: concurrency: group: "ci-${{ github.ref }}" cancel-in-progress: true jobs: test: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: ['2.5', '2.6', '2.7', '3.0', '3.1'] activesupport: ['5.2', '6.0', '6.1', '7.0'] exclude: - ruby: '2.5' activesupport: '7.0' - ruby: '2.6' activesupport: '7.0' - ruby: '3.0' activesupport: '5.2' - ruby: '3.1' activesupport: '5.2' env: BUNDLE_GEMFILE: "${{ github.workspace }}/gemfiles/Gemfile.activesupport-${{ matrix.activesupport }}" steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: 'Run bundle update' run: bundle update - name: Run tests run: bundle exec rake spec - name: Coveralls Parallel uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} flag-name: run-${{ matrix.ruby }}-${{ matrix.activesupport }} parallel: true finish: needs: 'test' runs-on: ubuntu-latest steps: - name: Coveralls Finished uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} parallel-finished: true
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
schema_dev-4.2.0 | .github/workflows/prs.yml |
schema_dev-4.2.beta.5 | .github/workflows/prs.yml |