Sha256: df612d4681b907251d660b4160b150c2691f4eb4108194ca9a494d3a147536ae

Contents?: true

Size: 1.03 KB

Versions: 4

Compression:

Stored size: 1.03 KB

Contents

name: Tests

on:
  pull_request:
    branches:
      - '*'
  push:
    branches:
      - master
jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: [ '2.7', '2.6', '2.5' ]
    steps:
      - uses: actions/checkout@master

      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}

      - name: Cache gems
        uses: actions/cache@v1
        with:
          path: vendor/bundle
          key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
          restore-keys: |
            ${{ runner.os }}-gem-
      - name: Install dependencies
        run: |
          sudo apt-get update
          sudo apt-get install libsqlite3-dev
          gem update --system
          gem install bundler
          bundle install --jobs 4 --retry 3
          bundle exec appraisal install

      - name: StandardRb check
        run: bundle exec standardrb

      - name: Run tests
        env:
          RAILS_ENV: test
        run: |
          bundle exec appraisal rake

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
make_taggable-0.6.6 .github/workflows/ci.yml
make_taggable-0.6.5 .github/workflows/ci.yml
make_taggable-0.6.4 .github/workflows/ci.yml
make_taggable-0.6.3 .github/workflows/ci.yml