Add a way to run tests in all languages

This commit is contained in:
Sami Samhuri 2022-01-22 17:59:41 -08:00
parent 6cf858fbfc
commit 91bda119f9
No known key found for this signature in database
GPG key ID: 4B4195422742FC16

15
Makefile Normal file
View file

@ -0,0 +1,15 @@
default: all
all: c ruby
c:
cd c && make test
ruby:
cd ruby && bundle exec rake
clean:
cd c && make clean
cd ruby && bundle exec rake clean
.PHONY: c ruby clean