Sha256: 02213129808d79286e8ed4b44a1c5e5bb4ca18a1e5cea2cbe1254809de4296a2

Contents?: true

Size: 641 Bytes

Versions: 8

Compression:

Stored size: 641 Bytes

Contents

name: Ruby Gem

on:
  push:
    branches:
      - master
  pull_request:


jobs:
  build:
    name: Tests and Code Style
    runs-on: ubuntu-latest

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

      - name: Install sqlite3
        run: sudo apt-get install libsqlite3-dev

      - name: Bundle install
        run: |
          gem install bundler
          bundle install --jobs 4 --retry 3
      - name: Tests (rspec)
        run: |
          bundle exec rspec
      - name: Code style (Rubocop)
        run: bundle exec rubocop

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
pub_sub_model_sync-0.4.0 .github/workflows/ruby.yml
transitions_listener-0.3.0 .github/workflows/ruby.yml
pub_sub_model_sync-0.3.1 .github/workflows/ruby.yml
pub_sub_model_sync-0.3.0 .github/workflows/ruby.yml
pub_sub_model_sync-0.2.4 .github/workflows/ruby.yml
transitions_listener-0.2.1 .github/workflows/ruby.yml
transitions_listener-0.2.0 .github/workflows/ruby.yml
transitions_listener-0.1.0 .github/workflows/ruby.yml