Some checks failed
Run Robot Framework Browser Tests / browser-tests (push) Failing after 48s
30 lines
556 B
YAML
30 lines
556 B
YAML
name: Run Robot Framework Browser Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
browser-tests:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.10'
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install -r requirements.txt
|
|
rfbrowser init # Download Playwright browsers
|
|
|
|
- name: Run Browser Tests
|
|
run: |
|
|
robot Tests/
|