Skip to content

Commit

Permalink
[GA] Support python 3.6, 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
iory committed Jan 2, 2024
1 parent 453f01d commit ea19def
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,16 @@ jobs:
strategy:
matrix:
os: [self-hosted]
python-version: [3.6, 3.8, 3.11]
steps:
- if: ${{ matrix.arch == 'arm64' }}
uses: deadsnakes/[email protected]
with:
python-version: "3.11"
python-version: ${{ matrix.python-version }}
- if: ${{ matrix.arch == 'amd64' }}
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install Pytest
run: |
Expand Down

0 comments on commit ea19def

Please sign in to comment.