Add synchronized rainbow effects for title bar and border #92
This file contains hidden or 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 ] | |
| paths-ignore: | |
| - '**/*.md' | |
| - '**/*.rst' | |
| pull_request: | |
| branches: [ main ] | |
| paths-ignore: | |
| - '**/*.md' | |
| - '**/*.rst' | |
| workflow_dispatch: | |
| jobs: | |
| codestyle: | |
| name: Check code style issues | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v5 | |
| with: | |
| submodules: 'recursive' | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Upgrade pip | |
| run: python -m pip install --upgrade pip | |
| - name: Install hPyT | |
| run: | | |
| python -m pip install . | |
| - name: Install Dependencies | |
| run: | | |
| python -m pip install ruff mypy customtkinter win32mica Pillow | |
| - name: Test and Lint with Ruff | |
| run: | | |
| ruff check . | |
| ruff format --check . | |
| - name: Test with Mypy | |
| run: | | |
| mypy hPyT --follow-untyped-imports |