Skip to content

Commit

Permalink
Update python versions matrix on CI (#2534)
Browse files Browse the repository at this point in the history
  • Loading branch information
misl6 authored Dec 29, 2021
1 parent a9eee16 commit 06dd1e0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
steps:
- name: Checkout python-for-android
uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2.2.1
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.x
- name: Run flake8
run: |
python -m pip install --upgrade pip
Expand All @@ -26,13 +26,13 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.6, 3.7]
python-version: ['3.7', '3.8', '3.9', '3.10']
os: [ubuntu-latest, macOs-latest]
steps:
- name: Checkout python-for-android
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2.2.1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Tox tests
Expand Down

0 comments on commit 06dd1e0

Please sign in to comment.