Skip to content

Commit

Permalink
CI: Use Python 3.11 in release CI because of SL
Browse files Browse the repository at this point in the history
  • Loading branch information
aaltat committed Jun 19, 2024
1 parent 789e0e1 commit a63a1b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.12 with Robot Framework 7
- name: Set up Python 3.11 with Robot Framework 7
uses: actions/setup-python@v5
with:
python-version: 3.12
python-version: 3.11
- name: Install dependencies
run: |
pip install uv
uv pip install -r requirements-dev.txt --python 3.12 --system --verbose
uv pip install robotframework-seleniumlibrary==6.5.0 --python 3.12 --system --verbose
uv pip install -r requirements-dev.txt --python 3.11 --system --verbose
uv pip install robotframework-seleniumlibrary --python 3.11 --system --verbose
- name: Lint files
run: inv lint
- name: Run unit tests
Expand Down

0 comments on commit a63a1b6

Please sign in to comment.