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
3 changes: 0 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,5 @@ jobs:
version: "latest"
prune-cache: true

- name: Run main
run: make run

- name: Test
run: make test
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
17 changes: 0 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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 |
Expand Down
4 changes: 0 additions & 4 deletions main.py

This file was deleted.