From de4e19ceea06f9735ebcbf4153d7d13664d60acd Mon Sep 17 00:00:00 2001 From: umarcor Date: Mon, 30 Nov 2020 07:55:50 +0100 Subject: [PATCH] ci/lin: split Build and Test steps --- .github/workflows/test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 10465ed46..b052f8cf0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,14 +27,16 @@ jobs: sudo apt update -qq sudo apt install -y make g++ git bison flex gperf libreadline-dev autoconf - - name: Build and test + - name: Build run: | - export PATH=$HOME/bin:$PATH autoconf ./configure --prefix=$HOME make install make check + - name: Test + run: | + export PATH=$HOME/bin:$PATH sh .github/test.sh