From 279781c5c5b1f464904f889d28de0f42a2557a3e Mon Sep 17 00:00:00 2001 From: Eric Joanis Date: Mon, 19 Aug 2024 15:22:02 -0400 Subject: [PATCH] ci: fix macos job by using actions/setup-python --- .github/workflows/tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 35a8c3f..4b4af14 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -49,12 +49,13 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - uses: actions/setup-python@v5 - name: Install run: | - pip3 install -r requirements.dev.txt - pip3 install . + pip install -r requirements.dev.txt + pip install . - name: Run tests - run: python3 -m pytest + run: python -m pytest nodetest: runs-on: ubuntu-latest steps: