Skip to content

Commit 64aedd7

Browse files
committed
Install missing stubs
1 parent cc42afb commit 64aedd7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ on:
1111
workflow_dispatch:
1212
inputs:
1313
debug_enabled:
14-
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
14+
description: "Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)"
1515
required: false
16-
default: 'false'
16+
default: "false"
1717

1818
jobs:
1919
test:
@@ -48,17 +48,17 @@ jobs:
4848
if: steps.cache.outputs.cache-hit != 'true'
4949
run: |
5050
python -m pip install --upgrade pip
51+
ython3 -m pip install types-setuptools
5152
python -m pip install "poetry"
5253
python -m poetry self add poetry-version-plugin
54+
5355
- name: Configure poetry
5456
run: python -m poetry config virtualenvs.create false
5557
- name: Install Dependencies
5658
if: steps.cache.outputs.cache-hit != 'true'
5759
run: python -m poetry install
5860
- name: Lint
59-
run: |
60-
mypy --install-types
61-
python -m poetry run bash scripts/lint.sh
61+
run: python -m poetry run bash scripts/lint.sh
6262
- run: mkdir coverage
6363
- name: Test
6464
run: python -m poetry run bash scripts/test.sh
@@ -80,7 +80,7 @@ jobs:
8080

8181
- uses: actions/setup-python@v4
8282
with:
83-
python-version: '3.8'
83+
python-version: "3.8"
8484

8585
- name: Get coverage files
8686
uses: actions/download-artifact@v3
@@ -102,7 +102,7 @@ jobs:
102102
path: htmlcov
103103

104104
# https://github.com/marketplace/actions/alls-green#why
105-
alls-green: # This job does nothing and is only used for the branch protection
105+
alls-green: # This job does nothing and is only used for the branch protection
106106
if: always()
107107
needs:
108108
- coverage-combine

0 commit comments

Comments
 (0)