diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7343182..dd59feb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,8 +43,5 @@ jobs: version: "latest" prune-cache: true - - name: Run main - run: make run - - name: Test run: make test diff --git a/Makefile b/Makefile index e05c904..8672698 100644 --- a/Makefile +++ b/Makefile @@ -14,10 +14,6 @@ help: ## Show this help message /^[a-zA-Z_-]+:.*##/ {printf " $(COLOR_CYAN)%-20s$(COLOR_RESET) %s\n", $$1, $$2}' \ $(MAKEFILE_LIST) -.PHONY: run -run: ## Run the main entry point - uv run python main.py - .PHONY: test test: ## Run tests uv run pytest test_*.py diff --git a/README.md b/README.md index 86ecc1d..eece9ea 100644 --- a/README.md +++ b/README.md @@ -127,22 +127,6 @@ and the locked project dependencies when needed. Continue when the test run passes. -## Run the entry point - -The repository retains `main.py` as its command-line entry point. Use Make when it is installed: - -```console -make run -``` - -Otherwise, run it through `uv` directly: - -```console -uv run python main.py -``` - -The command prints `Hello World!`. - ## Make command reference Make is optional. Run `make` or `make help` to list these commands in the terminal. @@ -151,7 +135,6 @@ Make is optional. Run `make` or `make help` to list these commands in the termin | ------------------- | --------------------------------------- | | `make all` | Run the test suite | | `make help` | List public Make targets | -| `make run` | Run `main.py` | | `make test` | Run the test suite | | `make format` | Format tracked Python files | | `make format-check` | Check formatting without changing files | diff --git a/main.py b/main.py deleted file mode 100755 index 8159ff0..0000000 --- a/main.py +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env python3 - -if __name__ == "__main__": - print("Hello World!")