From 0cc43e2d654a88793d7a0bcf5c4090dbd479e7a1 Mon Sep 17 00:00:00 2001 From: mwtmurphy Date: Sat, 13 Jan 2024 01:22:50 +0000 Subject: [PATCH] test: reintroducing testing make commands after deleting pyproject file from template --- .github/workflows/test_build.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test_build.yml b/.github/workflows/test_build.yml index 7da7a69..f0e4136 100644 --- a/.github/workflows/test_build.yml +++ b/.github/workflows/test_build.yml @@ -23,18 +23,19 @@ jobs: run: | pip install --upgrade pip pip install cookiecutter + pip install poetry - name: Create test repo run: | cookiecutter --no-input . - # - name: Run test repo shortcuts - # run: | - # cd project_name - # make poetry_env - # make env - # make major - # make minor - # make patch - # make src_tests - # make src_tests_cov + - name: Run test repo shortcuts + run: | + cd project-name + make poetry_env + make env + make major + make minor + make patch + make src_tests + make src_tests_cov