From 7c6e91f3bc7ed9a920625fdc9acd7ae9a179fe4f Mon Sep 17 00:00:00 2001 From: Hennadii Chernyshchyk Date: Sun, 3 Oct 2021 11:18:23 +0300 Subject: Make CI labels more consistent --- .github/workflows/build-cmake.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-cmake.yml b/.github/workflows/build-cmake.yml index 1ded607..16bdb25 100644 --- a/.github/workflows/build-cmake.yml +++ b/.github/workflows/build-cmake.yml @@ -29,18 +29,18 @@ jobs: CXXFLAGS: ${{ matrix.CXXFLAGS }} steps: - - uses: actions/checkout@v2.3.4 + - name: Clone repo + uses: actions/checkout@v2.3.4 - name: Install Qt uses: jurplel/install-qt-action@v2.11.1 with: version: ${{ matrix.qt_version }} - - name: cmake - run: cmake . ${{ matrix.additional_arguments }} - - - name: cmake build - run: cmake --build . + - name: Build library + run: | + cmake . ${{ matrix.additional_arguments }} + cmake --build . - name: Build example - basic (cmake) working-directory: examples/basic/ -- cgit v1.2.1