Skip to content

Updated type hints to be better #231

Updated type hints to be better

Updated type hints to be better #231

Workflow file for this run

name: Tests
on:
push:
paths:
- 'src/**'
- 'tests/**'
pull_request:
paths:
- 'src/**'
- 'tests/**'
workflow_dispatch: # Manual trigger, does not support paths filter
inputs:
trigger:
description: 'Manually triggered workflow'
required: false
default: 'true'
jobs:
Test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest, macos-13]
python-version: ['3.8', '3.11', '3.12']
click-version: ['==7.1.2', '>=8.1']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -U pip
pip install tox tox-gh-actions click${{ matrix.click-version }}
- name: Test with tox
run: tox