Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
ashpreetbedi committed Oct 16, 2024
1 parent 9b6cc33 commit ec77944
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,6 @@ aienv*
# ignore jupyter checkpoints
.ipynb_checkpoints
.Trash*

# ignore uv.lock
uv.lock

0 comments on commit ec77944

Please sign in to comment.