Add test for LoggedProp type hint inheritance #33
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
POETRY_VERSION: "1.7.0" | |
MAIN_PYTHON_VERSION: "3.9" | |
jobs: | |
ci: | |
strategy: | |
matrix: | |
python_version: ["3.9", "3.10", "3.11"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Poetry | |
run: pipx install poetry==${{ env.POETRY_VERSION }} | |
- name: Set up Python with Poetry cache | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python_version }} | |
cache: poetry | |
- name: Install dependencies | |
run: poetry install --all-extras | |
- name: Check Formatting (Black) | |
if: matrix.python_version == env.MAIN_PYTHON_VERSION | |
run: poetry run black datalogger tests --check | |
- name: Lint (Flake8) | |
if: matrix.python_version == env.MAIN_PYTHON_VERSION | |
run: poetry run flake8 datalogger tests | |
- name: Lint (Pylint) | |
if: matrix.python_version == env.MAIN_PYTHON_VERSION | |
run: poetry run pylint datalogger tests | |
- name: Mypy cache | |
if: matrix.python_version == env.MAIN_PYTHON_VERSION | |
uses: actions/cache@v3 | |
with: | |
path: .mypy_cache | |
key: mypy-${{ runner.os }}-python-${{ matrix.python_version }}-${{ github.sha }} | |
restore-keys: | | |
mypy-${{ runner.os }}-python-${{ matrix.python_version }}- | |
- name: Type Check (Mypy) | |
if: matrix.python_version == env.MAIN_PYTHON_VERSION | |
run: poetry run mypy datalogger tests | |
- name: Test (Pytest) | |
run: poetry run pytest |