aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHennadii Chernyshchyk <genaloner@gmail.com>2021-10-03 11:18:23 +0300
committerHennadii Chernyshchyk <genaloner@gmail.com>2021-10-03 11:18:23 +0300
commit7c6e91f3bc7ed9a920625fdc9acd7ae9a179fe4f (patch)
tree006385183b02969b5d8bba165cd9acae9e6f1cae
parentFormat with prettier (diff)
downloadsingleapplication-7c6e91f3bc7ed9a920625fdc9acd7ae9a179fe4f.tar.xz
Make CI labels more consistent
-rw-r--r--.github/workflows/build-cmake.yml12
1 files 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/