updated test suite (and fixed typo)

This commit is contained in:
overflowerror 2021-05-05 22:54:01 +02:00
parent eea92f908e
commit b85c7d97f8
2 changed files with 17 additions and 23 deletions

View file

@ -1,23 +0,0 @@
name: Test Suit
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install dependencies
run: sudo apt install flex bison
- name: make test
run: make clean test marshaller-test
- name: run basic test
run: ./test
- name: run marshaller test
run: ./marshaller-test

17
.github/workflows/test-suite.yml vendored Normal file
View file

@ -0,0 +1,17 @@
name: Test Suit
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: make and run tests
run: make clean tests