Skip to content

Commit b383e63

Browse files
authored
ci: Improve names for job's steps 2
1 parent 2e899aa commit b383e63

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,20 +48,20 @@ jobs:
4848
version: 'snapshot'
4949
architecture: 'x64'
5050

51-
- name: Setup Eask (ARM64)
51+
- name: Setup Eask (arm64)
5252
uses: emacs-eask/setup-eask@master
5353
if: matrix.os == 'ubuntu-24.04-arm'
5454
with:
5555
version: 'snapshot'
5656
architecture: 'arm64'
5757

58-
- name: Setup cmake
58+
- name: Setup cmake (x64)
5959
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
6060
uses: jwlawson/actions-setup-cmake@v1.4
6161
with:
6262
cmake-version: '3.18.x'
6363

64-
- name: Setup cmake for linux-aarch64
64+
- name: Setup cmake (arm64)
6565
if: matrix.os == 'ubuntu-24.04-arm'
6666
uses: lukka/get-cmake@latest
6767

@@ -73,13 +73,13 @@ jobs:
7373
with:
7474
python-version: "3.9"
7575

76-
- name: Install depedencies on Linux
76+
- name: Install depedencies (Linux)
7777
if: runner.os == 'Linux'
7878
run: |
7979
pip3 install python-language-server
8080
sudo apt-get install clangd-15
8181
82-
- name: Install depedencies on macOS
82+
- name: Install depedencies (macOS)
8383
if: runner.os == 'macOS'
8484
run: |
8585
pip3 install python-language-server
@@ -90,7 +90,7 @@ jobs:
9090

9191
- uses: actions/checkout@v4
9292

93-
- name: Grant execution permission
93+
- name: Grant execution permission (Unix)
9494
if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-24.04-arm' || matrix.os == 'macos-latest'
9595
run: chmod -R 777 ./
9696

0 commit comments

Comments
 (0)