Python: Add Continuous Integration for Python

There are a lot of exceptions, but it's a start.
This will ensure that no more issues get added / that issues
get fixed before the code is added
This commit is contained in:
Martin Thoma
2022-03-09 21:29:06 +01:00
parent 722bf1c3c5
commit a721c91557
6 changed files with 105 additions and 0 deletions

View File

@@ -40,6 +40,7 @@ def build_maze(width: int, length: int) -> Maze:
# Set to 1 if there is an exit down
# Set to 2 if there is an exit right
# Set to 3 if there are exits down and right
assert width >= 2 and length >= 2
used = []
walls = []