Skip to content

Commit b034bb5

Browse files
authored
Merge branch 'main' into feature/pycharm
2 parents 27587c6 + 1b06d22 commit b034bb5

File tree

6 files changed

+8
-64
lines changed

6 files changed

+8
-64
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ jobs:
2525
run: make format-check
2626

2727
test:
28-
runs-on: ubuntu-latest
28+
strategy:
29+
matrix:
30+
os: [ubuntu-latest, windows-latest, macos-latest]
31+
runs-on: ${{ matrix.os }}
2932

3033
steps:
3134
- uses: actions/checkout@v4
@@ -38,8 +41,5 @@ jobs:
3841
with:
3942
version: "latest"
4043

41-
- name: Run main
42-
run: make run
43-
4444
- name: Test
4545
run: make test

.replit

Lines changed: 0 additions & 19 deletions
This file was deleted.

Makefile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
all: test
22

3-
# Detect available package managers
43
UV := $(shell command -v uv 2> /dev/null)
5-
64
SRCS := $(shell git ls-files *.py)
75

86
ifdef UV
@@ -11,10 +9,6 @@ else
119
RUNNER :=
1210
endif
1311

14-
.PHONY: run
15-
run:
16-
$(RUNNER) ./main.py
17-
1812
.PHONY: test
1913
test:
2014
$(RUNNER) pytest test_*.py

README.md

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,17 @@
11
# Bootstrap for Python coding kata
22

33
[![CI](https://github.com/Coding-Cuddles/bootstrap-python-kata/actions/workflows/main.yml/badge.svg)](https://github.com/Coding-Cuddles/bootstrap-python-kata/actions/workflows/main.yml)
4-
[![Replit](https://img.shields.io/badge/Try%20with%20Replit-black?logo=replit)](https://replit.com/new/github/Coding-Cuddles/bootstrap-python-kata)
54

65
## Overview
76

87
This is a bootstrap repository for clean code katas in Python 3 using pytest.
98

10-
## Usage
11-
12-
You can import this project into [Replit](https://replit.com), and it will
13-
handle all dependencies automatically.
14-
15-
### Prerequisites
16-
17-
* [Python 3.8+](https://www.python.org/)
18-
* [pytest](https://pytest.org)
9+
## Prerequisites
1910

20-
### Run main
11+
- [Python 3.8+](https://www.python.org/)
12+
- [pytest](https://pytest.org)
2113

22-
```console
23-
make run
24-
```
14+
## Usage
2515

2616
### Run tests
2717

main.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

replit.nix

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)