Skip to content

chore(deps): update dependency python to 3.14 (#208) #172

chore(deps): update dependency python to 3.14 (#208)

chore(deps): update dependency python to 3.14 (#208) #172

Workflow file for this run

name: Playwright browser test for corpus decoder
'on':
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
permissions: {}
jobs:
test:
name: 'Test pages'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: '3.14'
- name: Install dependencies
run: |
pip --disable-pip-version-check --no-input --no-cache-dir install --progress-bar off --prefer-binary '.[browser-tests]'
python -m playwright install
- name: Install Playwright system dependencies
run: |
sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list
sudo rm -f /var/lib/man-db/auto-update
playwright install-deps
- name: Run Playwright browser test
run: pytest tests/browser/test_corpus_decoder.py