From 2f31d0c7ed69860e0b36aa5ef5af92a23bbda269 Mon Sep 17 00:00:00 2001 From: shenxianpeng Date: Thu, 12 Jun 2025 01:14:51 +0300 Subject: [PATCH] test: update build.yml to check JSON structure --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7c06842..9070f14 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,10 +32,14 @@ jobs: - name: Add plugin ${{ matrix.tool.plugin }} run: | + echo "Adding plugin ${{ matrix.tool.plugin }}" asdf plugin add ${{ matrix.tool.plugin }} https://github.com/cpp-linter/asdf-clang-tools.git + echo "Checking JSON structure..." + asdf plugin list --json | jq '.' - name: Install and test ${{ matrix.tool.plugin }} ${{ matrix.version }} on ${{ matrix.os }} run: | + echo "Installing ${{ matrix.tool.plugin }} version ${{ matrix.version }}" asdf install ${{ matrix.tool.plugin }} ${{ matrix.version }} asdf set ${{ matrix.tool.plugin }} ${{ matrix.version }} which ${{ matrix.tool.plugin }}