Skip to content

Bump yard from 0.9.28 to 0.9.35 #81

Bump yard from 0.9.28 to 0.9.35

Bump yard from 0.9.28 to 0.9.35 #81

Workflow file for this run

name: Linters
on:
push:
branches:
- main
pull_request:
branches:
- "*"
jobs:
inch:
runs-on: ubuntu-latest
name: Inch
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-linting-${{ hashFiles('Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-linting-
- run: |
gem install bundler
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3 --with="linting"
- name: Lint
run: |
bundle exec inch
rubocop:
runs-on: ubuntu-latest
name: Rubocop
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-linting-${{ hashFiles('Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-linting-
- run: |
gem install bundler
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3 --with="linting"
- name: Lint
run: |
bundle exec rubocop