Skip to content

Commit

Permalink
ci: update actions and change python matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
lucagiove committed Apr 7, 2024
1 parent 4de7ccd commit a44af2d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ 3.7, 3.8, 3.x ]
python-version: [ 3.8, 3.12 ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
Expand Down Expand Up @@ -50,13 +50,14 @@ jobs:
coverage report
coverage xml
- name: Update codecov for acceptance tests
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4
with:
flags: acceptance
file: coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
- name: Archive Robot Framework Tests Report
if: ${{ always() }}
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: rf-tests-report-${{ matrix.os }}-${{ matrix.python-version }}
path: ./tests-report

0 comments on commit a44af2d

Please sign in to comment.