From a3185bf925b5b14978b33603074c912225ca7a5e Mon Sep 17 00:00:00 2001 From: welcor <357770+welcor@users.noreply.github.com> Date: Fri, 21 Jun 2024 00:30:33 +0200 Subject: [PATCH] Added tests to workflow --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 717fe7a..f82e91f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,12 @@ jobs: steps: - uses: actions/checkout@v3 + - name: download munit + run: git submodule init && git submodule update - name: configure run: ./configure + - name: build tests + run: cd src && touch .accepted && make test - name: build - run: cd src && touch .accepted && make + run: make clean && make + \ No newline at end of file