File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Mypy
2+ on : [push, pull_request]
3+
4+ jobs :
5+ build :
6+ runs-on : ubuntu-latest
7+ name : Mypy
8+ steps :
9+ - uses : actions/checkout@v2
10+ - uses : actions/setup-python@v2
11+ with :
12+ python-version : " 3.10"
13+ - run : |
14+ pip install --upgrade pip
15+ pip install numpy mypy
16+ mypy --strict tictactoe
Original file line number Diff line number Diff line change 11# python-tictactoe
2- [ ![ PyPI version] ( https://badge.fury.io/py/python-tictactoe.svg )] ( https://badge.fury.io/py/python-tictactoe ) [ ![ Tests] ( https://github.com/AttackingOrDefending/python-tictactoe/actions/workflows/tests.yml/badge.svg )] ( https://github.com/AttackingOrDefending/python-tictactoe/actions/workflows/tests.yml ) [ ![ Build] ( https://github.com/AttackingOrDefending/python-tictactoe/actions/workflows/build.yml/badge.svg )] ( https://github.com/AttackingOrDefending/python-tictactoe/actions/workflows/build.yml ) [ ![ codecov] ( https://codecov.io/gh/AttackingOrDefending/python-tictactoe/branch/main/graph/badge.svg?token=7N5LHRA3OC )] ( https://codecov.io/gh/AttackingOrDefending/python-tictactoe )
2+ [ ![ PyPI version] ( https://badge.fury.io/py/python-tictactoe.svg )] ( https://badge.fury.io/py/python-tictactoe )
3+ [ ![ Tests] ( https://github.com/AttackingOrDefending/python-tictactoe/actions/workflows/tests.yml/badge.svg )] ( https://github.com/AttackingOrDefending/python-tictactoe/actions/workflows/tests.yml )
4+ [ ![ Build] ( https://github.com/AttackingOrDefending/python-tictactoe/actions/workflows/build.yml/badge.svg )] ( https://github.com/AttackingOrDefending/python-tictactoe/actions/workflows/build.yml )
5+ [ ![ Mypy] ( https://github.com/AttackingOrDefending/python-tictactoe/actions/workflows/mypy.yml/badge.svg )] ( https://github.com/AttackingOrDefending/python-tictactoe/actions/workflows/mypy.yml )
6+ [ ![ codecov] ( https://codecov.io/gh/AttackingOrDefending/python-tictactoe/branch/main/graph/badge.svg?token=7N5LHRA3OC )] ( https://codecov.io/gh/AttackingOrDefending/python-tictactoe )
37
48A tic-tac-toe library that supports different sizes and dimensions and how many marks in a row to win.
59
@@ -12,7 +16,7 @@ Download and install the latest release:
1216
1317## Features
1418
15- * Includes strict mypy typings.
19+ * Includes mypy typings.
1620
1721* Different board sizes
1822``` python
You can’t perform that action at this time.
0 commit comments