Skip to content

Move to pyproject.toml and cleanup non-source files #93

Move to pyproject.toml and cleanup non-source files

Move to pyproject.toml and cleanup non-source files #93

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
python:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: pip install -e .[test]
- name: Test with pytest
run: |
pytest --cov=tusclient