Skip to content

Commit

Permalink
ci: use Python 3.6 and above for mypy analysis
Browse files Browse the repository at this point in the history
Signed-off-by: César Román <thecesrom@gmail.com>
  • Loading branch information
cesarcoatl committed Jul 6, 2022
1 parent ce8b126 commit 3c0c420
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python 3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 3c0c420

Please sign in to comment.