From ab481e483061af6fa0023cfa7b7c0378dd944160 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= Date: Fri, 28 Apr 2023 11:06:09 +0200 Subject: Add definition for a GitHub Actions CI job MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The job just builds the full configuration on latest Ubuntu Signed-off-by: Uwe Kleine-König --- .github/workflows/build.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..6daaa8d --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,33 @@ +--- +name: Build test +'on': + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Install Dependencies + run: + sudo apt install + flex + libyaml-dev + pkg-config + python3-dev + swig + valgrind + bison + + - name: Build + run: make + + - name: Run check + run: make check -- cgit v1.2.1