Skip to content

Commit cd3f17c

Browse files
Update mypy.yml
1 parent da62967 commit cd3f17c

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/mypy.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@ jobs:
66
runs-on: ubuntu-latest
77
name: Mypy
88
steps:
9-
- uses: actions/checkout@v2
10-
- uses: actions/setup-python@v2
9+
- uses: actions/checkout@v3
10+
- name: Setup Python
11+
uses: actions/setup-python@v3
1112
with:
1213
python-version: "3.10"
13-
- run: |
14+
- name: Install dependencies
15+
run: |
1416
pip install --upgrade pip
15-
pip install numpy mypy
17+
pip install numpy
18+
pip install mypy
19+
- name: Mypy
1620
mypy --strict tictactoe

0 commit comments

Comments
 (0)