Sha256: 2faaff27babad8c1e5229852f387dcb3315daf96ca5af6c4f85cddfe92164c05

Contents?: true

Size: 793 Bytes

Versions: 6

Compression:

Stored size: 793 Bytes

Contents

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby

name: Style Check

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - '*'

jobs:
  rubocop:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: 3.1
    - name: Install dependencies
      run: bundle install
    - name: Run Rubocop
      run: bundle exec rubocop -D

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
flipper-notifications-0.1.6 .github/workflows/style-check.yml
flipper-notifications-0.1.5 .github/workflows/style-check.yml
flipper-notifications-0.1.4 .github/workflows/style-check.yml
flipper-notifications-0.1.3 .github/workflows/style-check.yml
flipper-notifications-0.1.2 .github/workflows/style-check.yml
flipper-notifications-0.1.1 .github/workflows/style-check.yml