docs: correct instructions for creating index.html and add signature … #36
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit tests + E2E tests | |
on: | |
push: | |
branches: ["*"] | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🐙 Git Checkout | |
uses: actions/checkout@v3 | |
- name: 🐍 Prepare Python environment | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.12" | |
- name: 🐍 Install Poetry | |
run: pip install poetry | |
- name: 🐍 Install dependencies | |
run: poetry install --no-interaction | |
- name: 🕸️ Ensure browsers are installed | |
run: poetry run playwright install --with-deps | |
- name: 🧪 Run tests | |
run: poetry run pytest --github-report -vvv --browser webkit --browser chromium --browser firefox |