From ec77944c6139a90169880deef0345fb9c0d31f5b Mon Sep 17 00:00:00 2001 From: Ashpreet Bedi Date: Wed, 16 Oct 2024 12:59:09 +0100 Subject: [PATCH] README --- .github/workflows/validate.yml | 8 ++++---- .gitignore | 3 +++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 0f0939d..9389fb2 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -38,13 +38,13 @@ jobs: run: uv pip sync requirements.txt - name: Format with ruff - run: uv run ruff format . + run: ruff format . - name: Lint with ruff - run: uv run ruff check . + run: ruff check . - name: Type-check with mypy - run: uv run mypy . + run: mypy . # - name: Run tests - # run: uv run pytest tests + # run: pytest tests diff --git a/.gitignore b/.gitignore index 69f07b2..f428694 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,6 @@ aienv* # ignore jupyter checkpoints .ipynb_checkpoints .Trash* + +# ignore uv.lock +uv.lock