Skip to content

uhttp: clitool - simple http client #6

uhttp: clitool - simple http client

uhttp: clitool - simple http client #6

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 1
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.10", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: pip install .
- name: Install test dependencies
run: pip install uhttp-server
- name: Run unit tests
run: python -m unittest discover -v tests/