Skip to content

Commit

Permalink
added test suites
Browse files Browse the repository at this point in the history
  • Loading branch information
xanthospap committed Oct 13, 2023
1 parent 3e770ac commit 42f95b7
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test-libdatetime.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI test

# Only trigger, when the build workflow succeeded
on:
workflow_run:
workflows: ["Linux CI build"]
types:
- completed

jobs:
notify:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: install scons
run: sudo apt-get install -y scons

- name: install (latest) eigen
run: sudo apt install libeigen3-dev

- name: build (tests), gcc
run: scons test=1

- name: Run test suites
run: python3 run_test_suite.py --progs-dir=test

0 comments on commit 42f95b7

Please sign in to comment.