Skip to content

Fix double colons in questions asked from GemcutterUtilities #10988

Fix double colons in questions asked from GemcutterUtilities

Fix double colons in questions asked from GemcutterUtilities #10988

Workflow file for this run

name: ubuntu-lint
on:
pull_request:
push:
branches:
- master
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@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- name: Setup ruby
uses: ruby/setup-ruby@cacc9f1c0b3f4eb8a16a6bb0ed10897b43b9de49 # v1.176.0
with:
ruby-version: 3.3.1
bundler: none
- name: Install Dependencies
run: rake setup
- name: Run Lint
run: rake rubocop
- name: Generate docs
run: rake docs
- name: Install & Check Dependencies
run: bin/rake dev:frozen_deps
- name: Misc checks
run: bin/rake check_rvm_integration man:check vendor:check version:check check_rubygems_integration
timeout-minutes: 15