web search: fix background color cut on edge #14
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: | |
name: Run tests | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4.1.1 | |
- name: Setup Python environment | |
uses: actions/setup-python@v5.0.0 | |
with: | |
python-version: '3.10' | |
- name: Verify Python installation | |
run: python -V | |
- name: Upgrade PIP | |
run: python -m pip install --upgrade pip | |
- name: PIP Packages | |
run: | | |
pip install pytz | |
pip install requests | |
pip install yaspin | |
- name: Run test | |
run: python wt.py -h |