Skip to content

Commit 96381f4

Browse files
committed
Improve CI workflow step naming
Updates the GitHub Actions C/C++ workflow to use explicit step names and adds a dedicated `arm-none-eabi-g++ --version` step after installing the toolchain. This makes CI logs clearer and confirms the installed compiler version before running `scripts/build_all.sh`.
1 parent 12c6bd2 commit 96381f4

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/c-cpp.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,17 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- name: Checkout repository
18+
uses: actions/checkout@v4
1819
- name: Set up Python
1920
uses: actions/setup-python@v5
2021
with:
2122
python-version: '3.10'
2223
- name: Install arm-none-eabi
2324
run: sudo apt install gcc-arm-none-eabi
25+
- name: version
26+
run: arm-none-eabi-g++ --version
2427
- name: build all
2528
run: |
2629
cd scripts
27-
./build_all.sh
30+
./build_all.sh

0 commit comments

Comments
 (0)