Sha256: 7fc11dd5938664ece341bcae18344d575818a27bc96ab49e6b2bb0b35267a191

Contents?: true

Size: 822 Bytes

Versions: 4

Compression:

Stored size: 822 Bytes

Contents

name: Linters

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

jobs:
  standardrb:
    name: StandardRB Check Action
    runs-on: ubuntu-latest
    if: "!contains(github.event.head_commit.message, 'ci skip')"
    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby 2.7
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.7.1
      - name: Cache gems
        uses: actions/cache@v1
        with:
          path: vendor/bundle
          key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
          restore-keys: |
            ${{ runner.os }}-gems-
      - name: Install gems
        run: |
          bundle config path vendor/bundle
          bundle install --jobs 4 --retry 3
      - name: Run StandardRB
        run: bin/checks/standardrb

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
bridgetown-plausible-tag-0.0.1 .github/workflows/linters.yml
bridgetown-inline-svg-1.1.1 .github/workflows/linters.yml
bridgetown-inline-svg-1.1.0 .github/workflows/linters.yml
bridgetown-inline-svg-1.0.0 .github/workflows/linters.yml