Merge pull request #2836 from ksss/fix-gc-compact #5778
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: RBS Comments | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: {} | |
| merge_group: {} | |
| jobs: | |
| comments: | |
| runs-on: "ubuntu-latest" | |
| # env: | |
| # RUBY_COMMIT: v4.0.0-preview2 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "4.0.1" | |
| bundler: none | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libdb-dev curl | |
| - name: Update rubygems & bundler | |
| run: | | |
| ruby -v | |
| gem update --system | |
| - name: install erb | |
| run: gem install erb | |
| - name: bin/setup | |
| run: | | |
| bin/setup | |
| - name: Check if `rake annotate` has been executed | |
| run: | | |
| git config --global --add safe.directory `pwd` | |
| bundle exec rake annotate confirm_annotation |