add web search #6
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/[email protected] | |
- name: Setup Python environment | |
uses: actions/[email protected] | |
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 |