Sync "Fix deadlock when malloc in Ractor lock" #213
This file contains hidden or 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: Header check | |
| on: [push, pull_request] | |
| jobs: | |
| header_check: | |
| runs-on: ubuntu-latest | |
| name: Check vendored Ruby headers | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "3.3" | |
| bundler-cache: true | |
| - run: bundle exec rake vendor_ruby_headers | |
| - run: git diff --no-ext-diff --ignore-submodules --exit-code |