Sha256: 20a60cb3486bc2a27e2385cf62d086e7d9a3838475798eef5cc6a5d6ef73897c

Contents?: true

Size: 682 Bytes

Versions: 50

Compression:

Stored size: 682 Bytes

Contents

name: CI
on: [push]
concurrency: 
  group: ${{ github.ref }}
  cancel-in-progress: true
jobs:
  build:
    runs-on: ubuntu-latest
    name: Ruby ${{ matrix.ruby }} tests
    strategy:
      matrix:
        ruby: [2.4, 2.5, 2.6, 2.7, 3.0]
    steps:
      - uses: actions/checkout@v3
      - name: Setup ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - run: ./scripts/build
      - run: ./scripts/test
  buildall:
    if: ${{ always() }}
    runs-on: ubuntu-latest
    name: Build (matrix)
    needs: build
    steps:
      - name: Check build matrix status
        if: ${{ needs.build.result != 'success' }}
        run: exit 1

Version data entries

50 entries across 50 versions & 1 rubygems

Version Path
recurly-4.23.0 .github/workflows/ci.yml
recurly-4.22.0 .github/workflows/ci.yml
recurly-3.22.0 .github/workflows/ci.yml
recurly-4.21.1 .github/workflows/ci.yml
recurly-4.21.0 .github/workflows/ci.yml
recurly-4.20.0 .github/workflows/ci.yml
recurly-3.21.0 .github/workflows/ci.yml
recurly-4.19.0 .github/workflows/ci.yml
recurly-3.20.0 .github/workflows/ci.yml
recurly-4.18.0 .github/workflows/ci.yml