From e0a4a26c424810ae21b1c2e8f7137b30cd0cce60 Mon Sep 17 00:00:00 2001 From: Jim Ramsay Date: Mon, 2 Jan 2023 11:27:22 -0500 Subject: [PATCH] Cleanup CI reporting and step names Signed-off-by: Jim Ramsay --- .github/workflows/build.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7d130c9..6b9edeb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Build check +name: Build and Unit Test on: push: @@ -7,10 +7,8 @@ on: branches: [ "master" ] jobs: - build: - + check: runs-on: ubuntu-latest - steps: - uses: actions/checkout@v3 - name: checkout aml @@ -23,11 +21,11 @@ jobs: with: repository: any1/neatvnc path: subprojects/neatvnc - - name: setup + - name: prepare environment run: sudo apt install -y meson libdrm-dev libxkbcommon-dev libwlroots-dev libjansson-dev libpam0g-dev libgnutls28-dev libavfilter-dev libavcodec-dev libavutil-dev libturbojpeg0-dev scdoc - name: configure run: meson build -D tests=true - - name: make + - name: compile run: meson compile -C build - name: unit tests - run: meson test -C build + run: meson test --verbose -C build