⬆️(deps-dev): Bump com.mycila:license-maven-plugin #164
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: Python CI (UV) | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| yamllint: | |
| name: Lint YAML Files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Sync Python dependencies | |
| run: uv sync --frozen | |
| - name: Run yamllint | |
| run: uv run yamllint . | |
| mbake: | |
| name: Validate Makefiles | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Sync Python dependencies | |
| run: uv sync --frozen | |
| - name: Run mbake validate | |
| run: uv run mbake validate Makefile |