Browse Source

github workflow: use python3 consistently

Alex Cheema 1 year ago
parent
commit
62a2407352
1 changed files with 2 additions and 2 deletions
  1. 2 2
      .github/workflows/test.yml

+ 2 - 2
.github/workflows/test.yml

@@ -17,7 +17,7 @@ jobs:
         python-version: '3.12'
         python-version: '3.12'
     - name: Install dependencies
     - name: Install dependencies
       run: |
       run: |
-        python -m pip install --upgrade pip
+        python3 -m pip install --upgrade pip
         pip install .
         pip install .
     - name: Run tests
     - name: Run tests
-      run: python -m exo.inference.test_inference_engine
+      run: python3 -m exo.inference.test_inference_engine