imp: global plugin system #77
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: Checks | |
on: | |
pull_request: | |
push: | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r cutekit/requirements.txt | |
python -m pip install mypy pytest ruff | |
- name: Type Checking | |
run: | | |
python -m mypy --install-types --non-interactive . | |
- name: Linting | |
run: | | |
ruff check cutekit | |
- name: Unit Testing | |
run: | | |
python -m pytest | |
- name: Check Installation | |
run: | | |
python -m pip install . | |
python -m cutekit --help | |