Sha256: d6900dfafec8776ca18111cf93219fa2974d029deb48c121dd4e90c364cbabbd

Contents?: true

Size: 696 Bytes

Versions: 7

Compression:

Stored size: 696 Bytes

Contents

name: CI

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  test:
    runs-on: ubuntu-latest
    services:
      redis:
        image: redis:alpine
        ports: ["6379:6379"]
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: '2.7'
        bundler-cache: true # runs 'bundle install' and caches installed gems automatically
    - name: Lint with RuboCop
      run: bundle exec rubocop --parallel
    - name: Run Danger
      env:
        DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      run: bundle exec danger
    - name: Run tests
      run: bundle exec rake spec

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
pushmi_pullyu-2.1.3 .github/workflows/ruby.yml
pushmi_pullyu-2.1.2 .github/workflows/ruby.yml
pushmi_pullyu-2.1.1 .github/workflows/ruby.yml
pushmi_pullyu-2.0.7 .github/workflows/ruby.yml
pushmi_pullyu-2.0.6 .github/workflows/ruby.yml
pushmi_pullyu-2.0.5 .github/workflows/ruby.yml
pushmi_pullyu-2.0.4 .github/workflows/ruby.yml