Skip to content

build(deps): bump actions/checkout from 4 to 5 (#107) #156

build(deps): bump actions/checkout from 4 to 5 (#107)

build(deps): bump actions/checkout from 4 to 5 (#107) #156

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", "3.13"]
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: pip install -e .[test]
- name: Test with pytest
run: |
pytest --cov=tusclient