Create Productivity.md #15
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: MIS CI | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| permissions: | |
| contents: read | |
| security-events: write | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: 🛒 Repository auschecken | |
| uses: actions/checkout@v4 | |
| - name: 🐍 Python einrichten | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: 📦 Abhängigkeiten installieren | |
| run: | | |
| pip install --upgrade pip | |
| pip install customtkinter requests | |
| - name: 🔍 Anwendung validieren | |
| run: | | |
| python -m py_compile app.py |