Skip to content

Updates for gitlab-ci and github actions #6

Updates for gitlab-ci and github actions

Updates for gitlab-ci and github actions #6

Workflow file for this run

name: Playwright Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python (latest)
uses: actions/setup-python@v4
with:
python-version: 'latest'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
playwright install --with-deps
- name: Run Playwright tests
run: pytest tests