Skip to content

Commit

Permalink
Try setup-python on arm runners
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhollas committed Apr 17, 2024
1 parent 7aba343 commit 7646971
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/actions/create-dev-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,14 @@ inputs:
runs:
using: composite
steps:
# actions/setup-python doesn't support Linux arm64 runners
# See: https://github.com/actions/setup-python/issues/108
# python3 is manually preinstalled in the arm64 VM self-hosted runner
- name: Set Up Python 🐍
if: ${{ inputs.architecture == 'amd64' }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: pip
cache-dependency-path: |
**/requirements*.txt
- name: Install Dev Dependencies 📦
run: |
pip install --upgrade pip
pip install --upgrade -r requirements-dev.txt
shell: bash
- name: Install dependencies 📦
run: pip install -r requirements-dev.txt
shell: bash -e

0 comments on commit 7646971

Please sign in to comment.