Run C tests too

This commit is contained in:
Sami Samhuri 2026-01-02 13:11:28 -08:00
parent 2f4b5d904d
commit f63dcf4375
No known key found for this signature in database

View file

@ -7,7 +7,7 @@ on:
pull_request:
jobs:
ruby:
test:
runs-on: ubuntu-latest
defaults:
run:
@ -25,3 +25,9 @@ jobs:
run: bundle exec rake test
- name: Run standard
run: bundle exec rake standard
- name: Install C dependencies
working-directory: .
run: sudo apt-get update && sudo apt-get install -y libreadline-dev
- name: Run C tests
working-directory: .
run: make c