From 0c7ad0231261ab5b85671db2f80aa39577cf5fb5 Mon Sep 17 00:00:00 2001 From: Liam Mulhall Date: Thu, 15 Feb 2024 15:03:54 -0800 Subject: [PATCH] Use different command to activate virtual environment For: https://github.com/ClinGen/affils/issues/3 --- .github/workflows/check.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index cc0ed56..dd829a4 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -15,13 +15,11 @@ jobs: run: pip install pipenv - name: Install dependencies run: pipenv sync - - name: Activate virtual environment - run: pipenv shell - name: Format - run: invoke fmt + run: pipenv run invoke fmt - name: Lint - run: invoke lint + run: pipenv run invoke lint - name: Check types - run: invoke types + run: pipenv run invoke types - name: Run tests - run: invoke test + run: pipenv run invoke test