Skip to content

Commit 36e9b99

Browse files
Gwillhevake
authored andcommitted
update action step names
1 parent ce09a4d commit 36e9b99

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/cmake.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- name: setup
13+
- name: Setup
1414
run: |
1515
sudo apt update
1616
sudo apt install build-essential cmake
1717
sudo apt install libgtest-dev libgmock-dev libmosquitto-dev
1818
- uses: actions/checkout@v3
19-
- name: build
19+
- name: Build
2020
run: cmake -B build && cmake --build build
21-
- name: test
21+
- name: Test
2222
run: find ./build -name *_test -exec {} \;

.github/workflows/make.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- name: setup
13+
- name: Setup
1414
run: |
1515
sudo apt update
1616
sudo apt install build-essential
1717
sudo apt install libgtest-dev libgmock-dev libmosquitto-dev
1818
- uses: actions/checkout@v3
19-
- name: build
19+
- name: Build
2020
run: make
21-
- name: test
21+
- name: Test
2222
run: find .build -name test -exec {} \;

0 commit comments

Comments
 (0)