From 7a8cae5f494af61a58c55905bae3d83d8faa7c05 Mon Sep 17 00:00:00 2001 From: abhiram Date: Sun, 2 Feb 2025 01:02:12 +0530 Subject: [PATCH] Update ci.yml Fix CI/CD: Ensure 'pip install metacall' before running tests. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc5b9e8..524634d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,6 +37,9 @@ jobs: - name: Installing Dependencies run: npm i + - name: Install MetaCall Python module + run: pip install metacall + - name: Lint run: npm run lint