Sha256: d307f76a988837d77965c290020dafa48e1293046c67c242f0c9e8db71ebca63

Contents?: true

Size: 826 Bytes

Versions: 1

Compression:

Stored size: 826 Bytes

Contents

name: Test

on:
  pull_request:
    types: [opened, synchronize]

jobs:
  chat:
    name: Checks
    timeout-minutes: 15
    runs-on: [macos-latest]
    if: |
      (github.event.pull_request.commits == 1 && !contains(github.event.pull_request.title, '[skip ci]')) ||
      contains(github.event.pull_request.title, '[run ci]')
    steps:
      - uses: actions/checkout@v2
        with:
          fetch-depth: '0'
      - name: Gitleaks
        run: |
          brew install gitleaks
          gitleaks --redact --verbose --pretty --repo-path=.
      - name: Bundler
        run: |
          gem install bundler
          bundle config path vendor/bundle
          bundle check || bundle install --jobs 4 --retry 3
      - name: Rubocop
        run: bundle exec rubocop
      - name: Fasterer
        run: bundle exec fasterer

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
skeleton-ui-0.1.20 .github/workflows/Test.yml