Skip to content

Update --ext=rust to support compiling the native extension from source #10999

Update --ext=rust to support compiling the native extension from source

Update --ext=rust to support compiling the native extension from source #10999

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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Setup ruby
uses: ruby/setup-ruby@cacc9f1c0b3f4eb8a16a6bb0ed10897b43b9de49 # v1.176.0
with:
ruby-version: 3.3.1
bundler: none
- name: Install Dependencies
run: bin/rake setup
- name: Run Lint
run: bin/rake rubocop
- name: Generate docs
run: bin/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