Add support for an IOC dialect #58
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Caracara Filters Code Quality and Test Coverage | |
on: | |
push: | |
paths: | |
- '**.py' | |
- '**.yml' | |
branches: | |
- main | |
- 'ver_*' | |
tags: | |
- 'v*' | |
pull_request: | |
jobs: | |
codequality: | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-rc.2"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Poetry via pipx | |
run: pipx install poetry | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'poetry' | |
- name: Install dependencies | |
run: poetry install | |
- name: Lint package source with flake8 | |
run: poetry run flake8 caracara_filters/ --show-source --statistics | |
- name: Lint package source with pylint | |
if: success() || failure() | |
run: poetry run pylint caracara_filters/ | |
- name: Lint package docstrings and comments with pydocstyle | |
if: success() || failure() | |
run: poetry run pydocstyle caracara_filters/ | |
- name: Lint imports with isort | |
if: success() || failure() | |
run: poetry run isort -c caracara_filters/ | |
- name: Lint package with black | |
if: success() || failure() | |
run: poetry run black -l 100 --check caracara_filters/ | |
- name: Run pytest via Coverage | |
if: success() || failure() | |
run: poetry run coverage run --source=caracara_filters -m pytest -s | |
- name: Get Coverage Report | |
run: poetry run coverage report |