@@ -34,52 +34,52 @@ jobs:
3434 runs-on : ${{ matrix.os }}
3535
3636 steps :
37- - name : Clone the repo
37+ - name : 📥 Clone the repo
3838 uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3939 with :
4040 fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
4141
42- - name : Set up .NET
42+ - name : 🔧 Set up .NET
4343 uses : actions/setup-dotnet@d4c94342e560b34958eacfc5d055d21461ed1c5d # v5.0.0
4444 with :
4545 dotnet-version : |
4646 10.0.x
4747 9.0.x
4848
4949 # NetFX testing on non-Windows requires mono
50- - name : Setup Mono
50+ - name : 🔧 Setup Mono
5151 if : runner.os == 'Linux'
5252 run : sudo apt-get install -y mono-devel
5353
54- - name : Setup Mono on macOS
54+ - name : 🔧 Setup Mono on macOS
5555 if : runner.os == 'macOS'
5656 run : brew install mono
5757
58- - name : Set up Node.js
58+ - name : 🔧 Set up Node.js
5959 uses : actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
6060 with :
6161 node-version : ' 20'
6262
63- - name : Install dependencies for tests
63+ - name : 📦 Install dependencies for tests
6464 run : npm install @modelcontextprotocol/server-everything
6565
66- - name : Install dependencies for tests
66+ - name : 📦 Install dependencies for tests
6767 run : npm install @modelcontextprotocol/server-memory
6868
69- - name : Build
69+ - name : 🏗️ Build
7070 run : make build CONFIGURATION=${{ matrix.configuration }}
7171
72- - name : Test
72+ - name : 🧪 Test
7373 run : make test CONFIGURATION=${{ matrix.configuration }}
7474
75- - name : Pack
75+ - name : 📦 Pack
7676 if : matrix.configuration == 'Release'
7777 run : make pack CONFIGURATION=${{ matrix.configuration }}
7878
79- - name : Generate docs
79+ - name : 📚 Generate docs
8080 run : make generate-docs CONFIGURATION=${{ matrix.configuration }}
8181
82- - name : Upload test results artifact
82+ - name : 📤 Upload test results artifact
8383 if : always()
8484 uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
8585 with :
0 commit comments