From 72b9120e441be83615eb9e447f95743b2f78638e Mon Sep 17 00:00:00 2001 From: Jacob Strieb Date: Thu, 21 Dec 2023 12:33:14 -0500 Subject: [PATCH] Fix mypy package conflicts --- .github/workflows/test.yml | 2 +- Justfile | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6d388e4..9c08f5a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,7 +39,7 @@ jobs: | sudo tar -C /usr/local/bin -xzv just - name: Lint run: | - just lint + just check test: name: Run all tests needs: lint diff --git a/Justfile b/Justfile index d12ebca..067e219 100644 --- a/Justfile +++ b/Justfile @@ -19,6 +19,11 @@ alias lint := lint-python lint-python: black . - mypy . + mypy test/ just_sh/ + ruff check --fix . + +check: + black --check --diff --color . + mypy test/ just_sh/ ruff check .