Skip to content

Create CNAME

Create CNAME #7

Workflow file for this run

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