Skip to content

Extract generate_index command to rubygems-generate_index gem #13

Extract generate_index command to rubygems-generate_index gem

Extract generate_index command to rubygems-generate_index gem #13

Workflow file for this run

name: ubuntu-lint
on:
pull_request:
merge_group:
concurrency:
group: ci-${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
ubuntu_lint:
name: Lint
runs-on: ubuntu-22.04
env:
RUBYOPT: -Ilib
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Setup ruby
uses: ruby/setup-ruby@5cfe23c062c0aac352e765b1b7cc12ea5255ccc4 # v1.156.0
with:
ruby-version: 3.2.2
bundler-cache: true
- name: Run Lint
run: bundle exec rake rubocop
- name: Check manifest
run: bundle exec rake check_manifest
timeout-minutes: 15