diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 75fc4e3..159d7f1 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -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 @@ -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