Skip to content

Commit

Permalink
feat: update CI workflow to support multiple Python versions and impr…
Browse files Browse the repository at this point in the history
…ove artifact naming
  • Loading branch information
Mark committed Jan 12, 2025
1 parent c3b4bf8 commit eda119a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
Expand All @@ -43,15 +43,14 @@ jobs:
matrix:
python-version: [3.8, 3.9, 3.10, 3.11, 3.12, 3.13]


steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
Expand All @@ -71,5 +70,5 @@ jobs:
uses: actions/upload-artifact@v4
with:
path: ./Logs
name: robot-test-results
name: robot-test-results-${{ matrix.python-version }}
retention-days: 3
1 change: 0 additions & 1 deletion atest/testcases/Test.robot
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
*** Settings ***
Library Collections
Library Dialogs
Library Process
Library Browser
Library RequestsLibrary
Expand Down

0 comments on commit eda119a

Please sign in to comment.