We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da62967 commit cd3f17cCopy full SHA for cd3f17c
1 file changed
.github/workflows/mypy.yml
@@ -6,11 +6,15 @@ jobs:
6
runs-on: ubuntu-latest
7
name: Mypy
8
steps:
9
- - uses: actions/checkout@v2
10
- - uses: actions/setup-python@v2
+ - uses: actions/checkout@v3
+ - name: Setup Python
11
+ uses: actions/setup-python@v3
12
with:
13
python-version: "3.10"
- - run: |
14
+ - name: Install dependencies
15
+ run: |
16
pip install --upgrade pip
- pip install numpy mypy
17
+ pip install numpy
18
+ pip install mypy
19
+ - name: Mypy
20
mypy --strict tictactoe
0 commit comments