From 6256b7f259da9977eced941b0706c70b028d1537 Mon Sep 17 00:00:00 2001 From: "hailihu@gmail.com" Date: Tue, 26 Nov 2024 20:35:08 +0100 Subject: [PATCH] Install jq in test workflow --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8cc94f3..51a5b27 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: 'Setup jq' + uses: dcarbone/install-jq-action@v3 - name: Test with shunit2 uses: sudo-bot/action-shunit2@latest with: - cli: "./tests/test_ada.sh" \ No newline at end of file + cli: "./tests/test_ada.sh" \ No newline at end of file