Skip to content

Workflow ci.yml

Workflow ci.yml #2

Workflow file for this run

name: Robot Framework Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
name: E2E Tests 🤖🤖
steps:
- name: Checkout 🚀🚀
uses: actions/checkout@v4
- name: Install dependencies ➕➕
run: pip install -r requirements.txt
- name: Initialize Browser Library (Playwright)
run: rfbrowser init
- name: E2E Tests 🧪🧪
run: robot -d ./reports tests/
- name: Upload Reports 📖📖
uses: actions/upload-artifact@v4
if: always()
with:
name: Test Execution Reports
path: reports
retention-days: 90
if-no-files-found: warn