mirror of
https://github.com/sigmasternchen/libargo
synced 2025-03-15 05:08:54 +00:00
updated test suite (and fixed typo)
This commit is contained in:
parent
eea92f908e
commit
b85c7d97f8
2 changed files with 17 additions and 23 deletions
23
.github/workflows/test-suit.yml
vendored
23
.github/workflows/test-suit.yml
vendored
|
@ -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
17
.github/workflows/test-suite.yml
vendored
Normal 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
|
Loading…
Reference in a new issue