Sha256: f59443d96a00e722172b1e2b6d940a331657498b8353b31fe5da510e1e435975

Contents?: true

Size: 696 Bytes

Versions: 4

Compression:

Stored size: 696 Bytes

Contents

name: Tests

on:
  pull_request:
    branches:
      - master
  push:
    branches:
      - master

jobs:
  test:
    name: Run tests on Ruby ${{ matrix.RUBY_VERSION }}
    runs-on: ubuntu-20.04
    strategy:
      fail-fast: false
      matrix:
        RUBY_VERSION: [2.1, 2.2, 2.3, 2.4, 2.5, 2.6]
    steps:
      - name: Check out code
        uses: actions/checkout@v4

      - name: Install Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.RUBY_VERSION }}
          bundler: 1.17.3

      - name: Bundle install
        run: bundle install

      - name: Rubocop
        run: bundle exec rake rubocop

      - name: Rspec
        run: bundle exec rspec

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
aptible-api-1.6.5 .github/workflows/ci.yml
aptible-api-1.6.4 .github/workflows/ci.yml
aptible-api-1.6.3 .github/workflows/ci.yml
aptible-api-1.6.2 .github/workflows/ci.yml