Add CI to run Ruby tests suite #69
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: 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 |