File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55
66version : 2
77updates :
8+ # # Github Actions
9+ - package-ecosystem : ' github-actions' # See documentation for possible values
10+ directory : ' /' # Location of package manifests
11+ open-pull-requests-limit : 100
12+ schedule :
13+ interval : ' daily'
14+
815 # # Frontend
916
1017 - package-ecosystem : ' npm' # See documentation for possible values
@@ -40,12 +47,11 @@ updates:
4047 open-pull-requests-limit : 100
4148 schedule :
4249 interval : ' daily'
43-
50+
4451 # # CLI
4552
4653 - package-ecosystem : ' uv' # See documentation for possible values
4754 directory : ' ./src/cli' # Location of package manifests
4855 open-pull-requests-limit : 100
4956 schedule :
5057 interval : ' daily'
51-
Original file line number Diff line number Diff line change 1+ name : Test CLI Build
2+
3+ on :
4+ push :
5+ branches : ['main']
6+ paths :
7+ - ' src/cli/**'
8+ - ' .github/workflows/**'
9+ pull_request :
10+ branches : ['main']
11+ paths :
12+ - ' src/cli/**'
13+ - ' .github/workflows/**'
14+ workflow_dispatch :
15+
16+ jobs :
17+ build-docker :
18+ runs-on : ubuntu-latest
19+ defaults :
20+ run :
21+ working-directory : ./src/cli
22+
23+ steps :
24+ - name : Checkout repository
25+ uses : actions/checkout@v4
26+
27+ - name : Install uv
28+ uses : astral-sh/setup-uv@v7
29+
30+ - name : Install deps with uv
31+ run : uv sync --frozen
32+
33+ - name : Build
34+ run : uv run poe nuitka
You can’t perform that action at this time.
0 commit comments