Skip to content

build(deps): bump actions/checkout from 3 to 4 #129

build(deps): bump actions/checkout from 3 to 4

build(deps): bump actions/checkout from 3 to 4 #129

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@v4
- 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