Skip to content

Bing: Added permanent site verification and fixed authentication glit… #3229

Bing: Added permanent site verification and fixed authentication glit…

Bing: Added permanent site verification and fixed authentication glit… #3229

Workflow file for this run

name: Test
on:
pull_request:
branches:
- "**"
push:
branches:
- master
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install tox tox-gh-actions
- name: Run tests with Tox
run: tox