pywright-cucumber/.gitea/workflows/behave.yml

26 lines
655 B
YAML
Raw Normal View History

2024-07-24 20:50:03 +00:00
name: behave
2024-07-24 20:42:38 +00:00
on: [ push ]
jobs:
build:
runs-on: ubuntu-gitea
strategy:
matrix:
python-version: [ "3.12" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
2024-07-24 20:44:47 +00:00
playwright install
2024-07-24 20:46:15 +00:00
playwright install chrome
2024-07-24 20:50:03 +00:00
- name: Run cucumber playwright tests
2024-07-24 20:42:38 +00:00
run: |
behave