From f33494c2ad9d295ba1666e7fb5d123e7dfe50829 Mon Sep 17 00:00:00 2001 From: nishchaykarle Date: Fri, 16 Feb 2024 18:17:53 -0600 Subject: [PATCH] update --- .github/workflows/ci.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e444f09..b1918e8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -5,6 +5,8 @@ on: branches: - main pull_request: + branches: + - main jobs: run-tests: @@ -29,7 +31,9 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies - run: python3 -m pip install pytest pyyaml parsl prettyprint schema + run: | + python3 -m pip install --upgrade pip + python3 -m pip install pytest pyyaml parsl prettyprint schema - name: Run tests - run: pytest + run: python3 -m pytest