Skip to content

Commit

Permalink
Workflow ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
thinogueiras committed Feb 25, 2024
1 parent 5bb98c4 commit 730a622
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
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

0 comments on commit 730a622

Please sign in to comment.