Skip to content

Bump version 0.1.1

Bump version 0.1.1 #12

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
lint:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up poetry
run: |
python3 -m pip install --user pipx
python3 -m pipx ensurepath
pipx install poetry
- name: Install dependencies
run: poetry install
- name: Run mypy
run: poetry run mypy pyqt_spellcheck
- name: Lint with ruff
run: poetry run ruff check pyqt_spellcheck