Skip to content

v3.0.5

v3.0.5 #41

Workflow file for this run

name: test 👷‍♂️
on:
pull_request:
push:
branches:
- "**"
- "!main"
tags-ignore:
- "**"
jobs:
build_test_docker:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11.1"]
steps:
- uses: actions/checkout@v3
- name: Setting up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Installing Poetry Dependencies
run: |
pip install poetry
poetry update
poetry install --no-root
- name: Lint with flake8
run: |
pip install flake8
flake8 --config .flake8 src/ tests/
continue-on-error: false
- name: Install Chromium & Playwright Dependencies
run: |
poetry run playwright install chromium
poetry run playwright install-deps chromium
- name: Launching Tests
run: |
poetry run pytest -ra -s -vv