-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (32 loc) · 780 Bytes
/
Copy pathpython.yml
File metadata and controls
43 lines (32 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
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