mirror of
https://github.com/samsonjs/csc360-a1-shell.git
synced 2026-03-25 08:45:52 +00:00
Run C tests too
This commit is contained in:
parent
2f4b5d904d
commit
f63dcf4375
1 changed files with 7 additions and 1 deletions
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue