Skip to content

Commit

Permalink
Add
Browse files Browse the repository at this point in the history
  • Loading branch information
iory committed Jan 2, 2024
1 parent ea19def commit 9e2ed72
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,19 @@ jobs:
os: [self-hosted]
python-version: [3.6, 3.8, 3.11]
steps:
- if: ${{ matrix.arch == 'arm64' }}
uses: deadsnakes/[email protected]
with:
python-version: ${{ matrix.python-version }}
- if: ${{ matrix.arch == 'amd64' }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Set up Python for Self-Hosted Linux arm64
- if: ${{ matrix.arch == 'arm64' }}
uses: deadsnakes/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python for Self-Hosted Linux amd64
- if: ${{ matrix.arch == 'amd64' }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Check Python Version
run: python --version
- name: Install Pytest
run: |
python -m pip install --upgrade pip setuptools wheel
Expand Down

0 comments on commit 9e2ed72

Please sign in to comment.