Skip to content

Commit

Permalink
Parametrize Python Version in PR workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tpapaioa committed Feb 7, 2025
1 parent 2f6499f commit 1f9b9d9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,22 @@ jobs:
name: Robottelo installation cross-check
runs-on: ubuntu-latest
needs: codechecks
strategy:
matrix:
python-version: ['3.13']
steps:
- name: Checkout Airgun
uses: actions/checkout@v4

- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
python-version: ${{ matrix.python-version }}

- name: Install the latest version of uv and set the Python version
uses: astral-sh/setup-uv@v5
with:
python-version: '3.12'
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-dependency-glob: |
**/requirements*.txt
Expand Down

0 comments on commit 1f9b9d9

Please sign in to comment.