summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJonathan Wren <jonathan@nowandwren.com>2022-06-25 12:45:39 -0700
committerGitHub <noreply@github.com>2022-06-25 12:45:39 -0700
commit23bc0f2c8f249e8db5dcc900794488f9842c9151 (patch)
treed29e2509b84a227c4fdf679556eff445ec9b0d16 /.github
parent856f3612717e2ebca5cc9d71b46965301e5f20f2 (diff)
Reduce difference between local and CI environments (#1518)
* Clean up pyproject file This reduces the differences between local tasks and tasks run in the CI pipelines * remove linting step (it's part of test now) * remove useless arg
Diffstat (limited to '.github')
-rw-r--r--.github/actions/run_tests/action.yaml9
1 files changed, 2 insertions, 7 deletions
diff --git a/.github/actions/run_tests/action.yaml b/.github/actions/run_tests/action.yaml
index c2242e0c..9ab6c6ca 100644
--- a/.github/actions/run_tests/action.yaml
+++ b/.github/actions/run_tests/action.yaml
@@ -39,12 +39,7 @@ runs:
echo 'DEPS_INSTALLED=true' >> $GITHUB_ENV
shell: bash
- - name: Linting
+ - name: Linting & Testing
if: ${{ env.DEPS_INSTALLED == 'true' }}
- run: poetry run poe ci-lint
- shell: bash
-
- - name: Testing
- if: ${{ env.DEPS_INSTALLED == 'true' }}
- run: poetry run poe ci-test
+ run: poetry run poe test
shell: bash