Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint
name: Format-and-Fail
on:
push:
branches: [ main ]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This repository is a template for a python 🐍 project using the poetry contain

### 🐍 by Default (Feel free to delete this after creating your project)
- [Black](https://github.com/psf/black): This serves as the codebase formatter.
- [Pylint](https://www.pylint.org/): This serves as the codebase linter.
- [Ruff](https://github.com/astral-sh/ruff): This serves as the codebase linter.
- [Pytest](https://docs.pytest.org/en/7.2.x/): This serves as the codebase test runner.
- [Requests](https://requests.readthedocs.io/en/latest/): This is the project's means of communicating with external APIs.
- [Responses](https://github.com/getsentry/responses): This is used in conjunction with Pytest and Requests to mock API calls in the test module.
Expand Down
44 changes: 22 additions & 22 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ readme = "README.md"
python = "^3.11"
black = "^23.3.0"
requests = "^2.28.2"
pytest = "^7.2.2"
pytest = "^7.3.1"
responses = "^0.23.1"
isort = "^5.12.0"
ruff = "^0.0.267"
ruff = "^0.0.272"

[tool.black]
line-length = 80
Expand Down