Skip to content

Bump version to 0.2.0 #19

Bump version to 0.2.0

Bump version to 0.2.0 #19

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
ci:
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
- name: Run unittests
run: poetry run python -m unittest