From 6f9c72705caefd92c0cc445fb0abeca45305d96c Mon Sep 17 00:00:00 2001 From: "Grayson, Matthew" Date: Wed, 20 Mar 2024 10:30:45 -0500 Subject: [PATCH] Create separate step for 'Create .env file' in lint job. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9b0386eb..7bc70807 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -100,9 +100,9 @@ jobs: python -m pip install --upgrade pip setuptools wheel pip install --upgrade --requirement requirements-test.txt - name: Set up pre-commit hook environments - run: | - pre-commit install-hooks - cp dev.env.example .env + run: pre-commit install-hooks + - name: Create .env file + run: cp dev.env.example .env - name: Run pre-commit on all files run: pre-commit run --all-files - name: Setup tmate debug session