Skip to content

Commit dfb26bc

Browse files
committed
workflows: adapt job and step names
Signed-off-by: Moritz Barsnick <barsnick@gmx.net>
1 parent 8a4d13d commit dfb26bc

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/test_build.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
name: Build Tests (ubuntu-latest gcc)
22
on: [push, pull_request, workflow_dispatch]
33
jobs:
4-
build-and-test:
4+
compile:
5+
name: Test compilation
56
runs-on: ubuntu-latest
67
strategy:
78
matrix:
@@ -31,16 +32,16 @@ jobs:
3132
modules: qt5compat
3233
steps:
3334
- id: install_qt
34-
name: "Install Qt using GHA"
35+
name: Install Qt using GHA
3536
uses: jurplel/install-qt-action@v4
3637
with:
3738
arch: ${{ matrix.qt-config.arch }}
3839
version: ${{ matrix.qt-config.version }}
3940
modules: ${{ matrix.qt-config.modules }}
4041
- uses: actions/checkout@v4
4142
- id: make
42-
name: "Build with qmake and make"
43+
name: Build with qmake and make
4344
run: qmake && make -j$(nproc)
4445
- id: show_binary
45-
name: "Show details of the final binary"
46+
name: Show details of the final binary
4647
run: ls -l bin/valkyrie; ldd -r bin/valkyrie

0 commit comments

Comments
 (0)