File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,15 +44,15 @@ jobs:
4444 - name : Checkout repo
4545 uses : actions/checkout@v5
4646
47- - run : cd fs
48-
4947 - name : Install uv
5048 uses : astral-sh/setup-uv@v6
5149 with :
5250 enable-cache : true
5351
5452 - name : Install deps
53+ working-directory : fs
5554 run : uv sync --frozen
5655
5756 - name : Run MyPy
57+ working-directory : fs
5858 run : uv run mypy .
Original file line number Diff line number Diff line change @@ -21,15 +21,15 @@ jobs:
2121 - name : Checkout repo
2222 uses : actions/checkout@v5
2323
24- - run : cd fs
25-
2624 - name : Install uv
2725 uses : astral-sh/setup-uv@v6
2826 with :
2927 enable-cache : true
3028
3129 - name : Install deps
30+ working-directory : fs
3231 run : uv sync --frozen --no-dev
3332
3433 - name : Run pyuic
35- run : find ./fs/src/ui/ui -type f -name *.ui -exec uv run -m PyQt6.uic.pyuic -x {} \; > /dev/null
34+ working-directory : fs
35+ run : find ./src/ui/ui -type f -name *.ui -exec uv run -m PyQt6.uic.pyuic -x {} \; > /dev/null
You can’t perform that action at this time.
0 commit comments