Skip to content

Fix arg counting bug in signature help (#25) #44

Fix arg counting bug in signature help (#25)

Fix arg counting bug in signature help (#25) #44

Workflow file for this run

name: CI
on: push
permissions:
contents: read
jobs:
test:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- 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 --upgrade pip
pip install hatch
- name: Run tests
run: hatch run test:all
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hatch
- name: Run pre-commit hooks
uses: pre-commit/[email protected]