Sha256: 6a58dbf2ebf5c4fa27da38c6207c03ad7aeda5043cdee55deb9ee6bf7a37ffb2

Contents?: true

Size: 779 Bytes

Versions: 5

Compression:

Stored size: 779 Bytes

Contents

name: CI
on: [push, pull_request]
jobs:
  tests:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v1

      - name: Set up Ruby 2.6
        uses: actions/setup-ruby@v1
        with:
          ruby-version: 2.6.x

      - name: Cache gem dependencies
        uses: actions/cache@v1
        with:
          path: vendor/bundle
          key: ${{ runner.os }}-bundler-${{ hashFiles('**/Gemfile.lock') }}
          restore-keys: ${{ runner.os }}-bundler-

      - name: Install system dependencies
        run: sudo apt-get update && sudo apt-get install libsqlite3-dev

      - name: Install gem dependencies
        run:  gem install bundler && bundle install --jobs 4 --retry 3 --path vendor/bundle

      - name: Run tests
        run: bundle exec rake test

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
geared_pagination-1.1.1 .github/workflows/ci.yml
geared_pagination-1.1.0 .github/workflows/ci.yml
geared_pagination-1.0.2 .github/workflows/ci.yml
geared_pagination-1.0.1 .github/workflows/ci.yml
geared_pagination-1.0.0 .github/workflows/ci.yml