Release 1.3 #245
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: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/cache@v3 | |
name: Configure pip caching | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Cache Playwright browsers | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/ms-playwright/ | |
key: ${{ runner.os }}-browsers | |
- name: Install dependencies | |
run: | | |
pip install -e '.[test]' | |
- name: Install Playwright dependencies | |
run: | | |
python -m playwright install-deps | |
shot-scraper install | |
shot-scraper install -b firefox | |
shot-scraper install -b webkit | |
- name: Run tests | |
run: | | |
pytest | |
- name: Check if cog needs to be run | |
run: | | |
cog --check docs/*.md | |
- name: Run test examples | |
run: | | |
tests/run_examples.sh | |
- name: Archive examples | |
uses: actions/upload-artifact@v3 | |
with: | |
name: examples | |
path: examples/* |