Skip to content

Commit

Permalink
Added pydantic models to the project
Browse files Browse the repository at this point in the history
  • Loading branch information
Pokhilenko committed Jun 1, 2024
1 parent 365a59c commit 1c1ca5c
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Playwright Tests

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: [3.8, 3.9, 3.10]

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
playwright install
- name: Run Playwright tests
run: |
pytest tests

0 comments on commit 1c1ca5c

Please sign in to comment.