[NO-TICKET] Fix Ruby 3.3 CI being broken in master due to profiler #3546
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ master ] | |
jobs: | |
check: | |
name: Check types | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@31a7f6d628878b80bc63375a93ae079ec50a1601 # v1.143.0 | |
with: | |
ruby-version: '3.2' | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Check for stale signature files | |
run: bundle exec rake rbs:stale | |
- name: Check for missing signature files | |
run: bundle exec rake rbs:missing | |
- name: Check types | |
run: bundle exec rake steep:check | |
- name: Record stats | |
run: bundle exec rake steep:stats[md] >> $GITHUB_STEP_SUMMARY |