Sha256: 5cf6cd32d896917dc29187dee5ced4389340f5048485ece271b5576c32e4edbb

Contents?: true

Size: 538 Bytes

Versions: 5

Compression:

Stored size: 538 Bytes

Contents

name: Ruby CI
on: [push]

jobs:
  test:
    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby-version: ['2.5', '2.6', '2.7', '3.0', '3.1']

    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby ${{ matrix.ruby-version }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
      - name: Install dependencies
        run: bundle install
      - name: Run tests
        run: bundle exec rake test
        env:
          CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
calendly-0.14.0 .github/workflows/ci.yml
calendly-0.13.0 .github/workflows/ci.yml
calendly-0.12.0 .github/workflows/ci.yml
calendly-0.11.1 .github/workflows/ci.yml
calendly-0.11.0 .github/workflows/ci.yml