Prerequesites for Browser ans Selenium Libraries #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Regression Tests | |
on: push | |
jobs: | |
Agent: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
# python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] | |
python: ['3.7'] | |
fail-fast: false | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install NodeJS for Browser Library | |
uses: actions/setup-node@v4 | |
- name: Install Pip Requirements | |
run: pip install -r Regression_Tests/pip_requirements.txt | |
- name: Run rfbrowser init for Browser Library | |
run: rfbrowser init | |
- name: Robot Framework | |
run: robot --outputdir Regression_Tests/Logs/${{ matrix.platform }}_${{ matrix.python }} -v STT_MIN:1 -v STT_MAX:5 Regression_Tests | |
- name: Archive Agent Logs | |
if: ${{ success() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Regression_Tests-${{ matrix.platform }}-${{ matrix.python }} | |
path: Regression_Tests/Logs/${{ matrix.platform }}_${{ matrix.python }} | |
retention-days: 15 | |
- name: Archive Agent Logs (longer retention if failed) | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Regression_Tests-${{ matrix.platform }}-${{ matrix.python }} | |
path: Regression_Tests/Logs/${{ matrix.platform }}_${{ matrix.python }} | |
retention-days: 90 |