Use typing_extensions

This commit is contained in:
c-bata
2020-10-27 03:12:35 +09:00
parent 796b576644
commit d4e3cd347b
3 changed files with 21 additions and 5 deletions
+5 -2
View File
@@ -25,12 +25,15 @@ jobs:
- run: mypy .
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python
- name: Setup Python${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: '3.x'
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: pip install --progress-bar off .